diff --git a/.github/check_version.py b/.github/check_version.py index 6c6f6c7..b42092d 100644 --- a/.github/check_version.py +++ b/.github/check_version.py @@ -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 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0d0179e..8f2ddb0 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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/* diff --git a/CHANGELOG.md b/CHANGELOG.md index a26007d..bd50b01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/VERSION b/VERSION index 1d71ef9..a2268e2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.3 \ No newline at end of file +0.3.1 \ No newline at end of file