Skip to content

Commit e37f719

Browse files
committed
bump versions
1 parent 19219b3 commit e37f719

7 files changed

Lines changed: 21 additions & 6 deletions

File tree

ark/attest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ark/attest",
3-
"version": "0.51.0",
3+
"version": "0.52.0",
44
"license": "MIT",
55
"author": {
66
"name": "David Blass",

ark/fs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ark/fs",
3-
"version": "0.51.0",
3+
"version": "0.52.0",
44
"license": "MIT",
55
"author": {
66
"name": "David Blass",

ark/schema/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ark/schema",
3-
"version": "0.51.0",
3+
"version": "0.52.0",
44
"license": "MIT",
55
"author": {
66
"name": "David Blass",

ark/type/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# arktype
22

3+
## 2.1.24
4+
5+
### bump regex inference to arkregex 0.0.1
6+
7+
### duplicate key errors
8+
9+
Definitions like the following now throw a descriptive error:
10+
11+
```ts
12+
const T = type({
13+
foo: "string",
14+
foo?: "string"
15+
})
16+
```
17+
318
## 2.1.23
419

520
### regex literals are now inferred (will be announced and documented as part of 2.2)

ark/type/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "arktype",
33
"description": "TypeScript's 1:1 validator, optimized from editor to runtime",
4-
"version": "2.1.23",
4+
"version": "2.1.24",
55
"license": "MIT",
66
"repository": {
77
"type": "git",

ark/util/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ark/util",
3-
"version": "0.51.0",
3+
"version": "0.52.0",
44
"license": "MIT",
55
"author": {
66
"name": "David Blass",

ark/util/registry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { FileConstructor, objectKindOf } from "./objectKinds.ts"
88
// recent node versions (https://nodejs.org/api/esm.html#json-modules).
99

1010
// For now, we assert this matches the package.json version via a unit test.
11-
export const arkUtilVersion = "0.51.0"
11+
export const arkUtilVersion = "0.52.0"
1212

1313
export const initialRegistryContents = {
1414
version: arkUtilVersion,

0 commit comments

Comments
 (0)