Skip to content

Commit

Permalink
fix release (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
dronperminov authored Sep 13, 2023
1 parent 65fa7f4 commit f24941f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/check_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@

assert match is not None, "New version doesn't match the pattern"
assert args.tag.startswith("v") and args.tag[1:] == args.new_version, "Tag value should be equal to version with `v` in the beginning"
assert parse_version(args.old_version) <= parse_version(args.new_version), "New version should be greater than old version"
assert parse_version(args.old_version) < parse_version(args.new_version), "New version should be greater than old version"

print("Version is correct") # noqa
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ jobs:
run: |
python3 -m build -w
twine check dist/*
twine upload --skip-existing --repository pypi dist/*
twine upload --repository pypi dist/*
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

v0.3.1 (2023-09-13)
-------------------
* Add float conversion for `rotated_angle` in `SkewCorrection`

v0.3 (2023-09-13)
-------------------
* Add dictionaries with info for preprocessors
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3
0.3.1

0 comments on commit f24941f

Please sign in to comment.