Skip to content

Commit f24941f

Browse files
authored
fix release (#10)
1 parent 65fa7f4 commit f24941f

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.github/check_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717

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

2222
print("Version is correct") # noqa

.github/workflows/release.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ jobs:
3434
run: |
3535
python3 -m build -w
3636
twine check dist/*
37-
twine upload --skip-existing --repository pypi dist/*
37+
twine upload --repository pypi dist/*

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changelog
22
=========
33

4+
v0.3.1 (2023-09-13)
5+
-------------------
6+
* Add float conversion for `rotated_angle` in `SkewCorrection`
7+
48
v0.3 (2023-09-13)
59
-------------------
610
* Add dictionaries with info for preprocessors

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3
1+
0.3.1

0 commit comments

Comments
 (0)