Skip to content

Commit

Permalink
v2.4.11
Browse files Browse the repository at this point in the history
  • Loading branch information
dvershinin committed Feb 16, 2023
1 parent 2879d26 commit 8ffbc9b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
All notable changes to this project will be documented in this file.

## [2.4.11] - 2023-02-16
### Fixed
* Don't treat 0.0.90+ as pre-releases #90

## [2.4.10] - 2023-01-24
### Fixed
* Fatal failure regression from release 2.4.9 on some packaging library versions
Expand Down
2 changes: 1 addition & 1 deletion lastversion/Version.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def micro(self):
@property
def is_prerelease(self):
# type: () -> bool
if self.micro >= 90:
if self.major and self.minor and self.micro >= 90:
return True
return self.dev is not None or self.pre is not None

Expand Down
2 changes: 1 addition & 1 deletion lastversion/__about__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '2.4.10'
__version__ = '2.4.11'
__self__ = "dvershinin/lastversion"

0 comments on commit 8ffbc9b

Please sign in to comment.