Skip to content

Commit f571368

Browse files
chore(): 1.5.0 [skip ci]
# [1.5.0](v1.4.5...v1.5.0) (2025-03-13) ### Bug Fixes * **deps:** update dependency yup to v1 ([#274](#274)) ([f4a61e5](f4a61e5)) ### Features * add allowStepping option ([#290](#290)) ([f6a0c53](f6a0c53)) * add check for non-integer numbers ([#291](#291)) ([2977282](2977282)) * add check for second step number (max value, step range) ([#291](#291)) ([13e875b](13e875b))
1 parent 907f5fc commit f571368

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# [1.5.0](https://github.com/Airfooox/cron-validate/compare/v1.4.5...v1.5.0) (2025-03-13)
2+
3+
4+
### Bug Fixes
5+
6+
* **deps:** update dependency yup to v1 ([#274](https://github.com/Airfooox/cron-validate/issues/274)) ([f4a61e5](https://github.com/Airfooox/cron-validate/commit/f4a61e597d9a1b284d90dc779b065247943e6224))
7+
8+
9+
### Features
10+
11+
* add allowStepping option ([#290](https://github.com/Airfooox/cron-validate/issues/290)) ([f6a0c53](https://github.com/Airfooox/cron-validate/commit/f6a0c531058fbde7def3427dc55cce97db52c26d))
12+
* add check for non-integer numbers ([#291](https://github.com/Airfooox/cron-validate/issues/291)) ([2977282](https://github.com/Airfooox/cron-validate/commit/2977282ef989749230b3a3ebcb8d1d90953dc07a))
13+
* add check for second step number (max value, step range) ([#291](https://github.com/Airfooox/cron-validate/issues/291)) ([13e875b](https://github.com/Airfooox/cron-validate/commit/13e875b453a3efbec13fa97458034753405fb907))
14+
115
## [1.4.5](https://github.com/Airfooox/cron-validate/compare/v1.4.4...v1.4.5) (2022-11-20)
216

317

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cron-validate",
3-
"version": "1.4.5",
3+
"version": "1.5.0",
44
"description": "cron-validate is a cron-expression validator written in TypeScript.",
55
"scripts": {
66
"dev": "nodemon",
@@ -10,6 +10,7 @@
1010
"prettier": "prettier --write src/**/*.ts",
1111
"tsc-check": "tsc --project ./tsconfig.json --noEmit",
1212
"release": "npm run build && env-cmd npx semantic-release --branches master --no-ci",
13+
"release-dry": "npm run build && env-cmd npx semantic-release --branches master --no-ci --dry-run",
1314
"release-next": "npm run build && env-cmd npx semantic-release --branches next --no-ci",
1415
"release-next-major": "npm run build && env-cmd npx semantic-release --branches next-major --no-ci",
1516
"test": "jest --coverage",

0 commit comments

Comments
 (0)