Skip to content

Commit 441c642

Browse files
authored
Merge pull request #9 from grumBit/Add-release-notes
Add release notes
2 parents b33dd8e + f6673f9 commit 441c642

File tree

2 files changed

+53
-1
lines changed

2 files changed

+53
-1
lines changed

RELEASENOTES.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
2+
# Release History
3+
4+
## v1.1.4
5+
6+
- New;
7+
- Add these project release notes
8+
9+
## v1.1.3
10+
11+
- Fixes;
12+
- [Year checking is incorrectly allowing ? and L](https://github.com/grumBit/aws_cron_expression_validator/issues/7)
13+
14+
## v1.1.2
15+
16+
- Fixes;
17+
- [It should be possible to precede a slash with a range](https://github.com/grumBit/aws_cron_expression_validator/issues/6#issuecomment-1547031279)
18+
19+
## v1.0.10 to v1.0.11
20+
21+
- New;
22+
- Adds community standards documentation suggested by GitHub. _No functional changes_
23+
24+
## v1.0.9
25+
26+
- Fixes;
27+
- [Address security alert from dependabot regarding a ReDoS vulnerability](https://github.com/grumBit/aws_cron_expression_validator/pull/4) in svnurl.py when running unit tests. _NB: The vulnerability only related to unit testing. The aws-cron-expression-validator package itself was not impacted._
28+
29+
## v1.0.8
30+
31+
- New;
32+
- Adds exceptions for each field (e.g. `AWSCronExpressionMinuteError`).
33+
34+
## v1.0.7
35+
36+
- New;
37+
- [Relaxes Python language dependency from v3.9 to v3.7](https://github.com/grumBit/aws_cron_expression_validator/issues/1#issuecomment-1265588982). _No functional changes_
38+
39+
## v1.0.6
40+
41+
- Fixes;
42+
- [Cron does not correctly validate CloudWatch expressions where the minutes field contains a /](https://github.com/grumBit/aws_cron_expression_validator/issues/1)
43+
44+
## v1.0.0 to v1.0.5
45+
46+
- Internal non-functional changes;
47+
- Relax Python language dependency from v3.9 to v3.7.
48+
- Code linting.
49+
- Fix PyPI link to source.
50+
- Additional automated CI/CD testing.
51+
- Updated docs

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "aws_cron_expression_validator"
7-
version = "1.1.3"
7+
version = "1.1.6"
88
authors = [
99
{ name="Graham Coster", email="bitjugglers@gmail.com" },
1010
]
@@ -23,6 +23,7 @@ classifiers = [
2323
"Bug Tracker" = "https://github.com/grumBit/aws_cron_expression_validator/issues"
2424
"Source" = "https://github.com/grumBit/aws_cron_expression_validator"
2525
"Security Policy" = "https://github.com/grumbit/aws_cron_expression_validator/blob/master/.github/SECURITY.md"
26+
"Release Notes" = "https://github.com/grumBit/aws_cron_expression_validator/blob/master/RELEASENOTES.md"
2627

2728
[tool.pytest.ini_options]
2829
addopts = "--cov-report html --cov-report term-missing --cov-fail-under 95"

0 commit comments

Comments
 (0)