Skip to content

Commit 9db57f3

Browse files
committed
chore: initial release v0.1.0
1 parent 9c2f013 commit 9db57f3

2 files changed

Lines changed: 19 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# chronologic-validator
22

3+
## 0.1.0
4+
5+
### Minor Changes
6+
7+
- Initial release
8+
39
## 0.0.1
410

511
### Patch Changes
@@ -10,4 +16,4 @@
1016
- React Hook Form adapter for seamless form integration
1117
- Zod adapter for schema validation
1218
- Midnight UTC normalization to prevent timezone issues
13-
- Comprehensive test suite with 90%+ coverage
19+
- Comprehensive test suite with 90%+ coverage

package.json

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "chronologic-validator",
3-
"version": "0.0.1",
3+
"version": "0.1.0",
44
"description": "Framework-agnostic TypeScript library for validating ordered date field sequences",
55
"author": "Your Name <you@example.com>",
66
"license": "MIT",
77
"repository": {
88
"type": "git",
9-
"url": "https://github.com/yourusername/chronologic-validator"
9+
"url": "git+https://github.com/martinschike/chronologic-validator.git"
1010
},
1111
"keywords": [
1212
"date",
@@ -62,9 +62,15 @@
6262
"zod": ">=3"
6363
},
6464
"peerDependenciesMeta": {
65-
"react": { "optional": true },
66-
"react-hook-form": { "optional": true },
67-
"zod": { "optional": true }
65+
"react": {
66+
"optional": true
67+
},
68+
"react-hook-form": {
69+
"optional": true
70+
},
71+
"zod": {
72+
"optional": true
73+
}
6874
},
6975
"devDependencies": {
7076
"@changesets/cli": "^2.27.0",
@@ -80,4 +86,4 @@
8086
"vitest": "^1.0.0",
8187
"zod": "^3.0.0"
8288
}
83-
}
89+
}

0 commit comments

Comments
 (0)