File tree 4 files changed +7
-3
lines changed
4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 17
17
18
18
assert match is not None , "New version doesn't match the pattern"
19
19
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"
21
21
22
22
print ("Version is correct" ) # noqa
Original file line number Diff line number Diff line change 34
34
run : |
35
35
python3 -m build -w
36
36
twine check dist/*
37
- twine upload --skip-existing -- repository pypi dist/*
37
+ twine upload --repository pypi dist/*
Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
+ v0.3.1 (2023-09-13)
5
+ -------------------
6
+ * Add float conversion for ` rotated_angle ` in ` SkewCorrection `
7
+
4
8
v0.3 (2023-09-13)
5
9
-------------------
6
10
* Add dictionaries with info for preprocessors
Original file line number Diff line number Diff line change 1
- 0.3
1
+ 0.3.1
You can’t perform that action at this time.
0 commit comments