Skip to content

Commit

Permalink
chore: bump version to 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Skelmis committed Jul 7, 2024
1 parent aa216b6 commit ab3d201
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions antispam/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
"""
__version__ = "1.8.1"
__version__ = "1.9.0"

import logging
import sys
Expand All @@ -34,7 +34,7 @@

logging.getLogger(__name__).addHandler(logging.NullHandler())
VersionInfo = namedtuple("VersionInfo", "major minor micro releaselevel serial")
version_info = VersionInfo(major=1, minor=8, micro=1, releaselevel="final", serial=0)
version_info = VersionInfo(major=1, minor=9, micro=0, releaselevel="final", serial=0)


if sys.version_info[1] < 8:
Expand Down

0 comments on commit ab3d201

Please sign in to comment.