From fb95b654aa8d9b0d8c8187587e5fe5802b0b74cc Mon Sep 17 00:00:00 2001 From: Justin Michalicek Date: Sun, 8 Jan 2023 20:09:47 -0500 Subject: [PATCH] v5.0.0 - Just cleaning up messes from improperly versioned pypi releases then forgetting about them + docs updates --- HISTORY.rst | 15 +++++++++++++-- djfractions/__init__.py | 2 +- setup.cfg | 2 +- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index ea9d4ea..945d3f4 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,9 +6,20 @@ History Current +++++++++ -4.0.1 (2022-08-10) +5.0.0 (2023-01-08) +++++++++ -* I'm dumb and goofed thing up, so here we are +* Forgot about the 4.0.0 mess when I published 3.1.0, so starting fresh again. + There are not really any backwards incompatible changes. See the 3.1.0 release notes. +* Fixing documentation and release history. + +4.0.0 (2022-08-10) ++++++++++ +* I'm dumb and goofed thing up and so this version exists on pypi + +3.1.0 (2022-12-26) +++++++++++ +* Add testing on python 3.11 by @jmichalicek in #30 +* Fixed 'Polynomial regular expression used on uncontrolled data' codeQL issues which could be abused to impact performance. 3.0.0 (2022-08-10) +++++++++ diff --git a/djfractions/__init__.py b/djfractions/__init__.py index ee1bbd3..639be51 100644 --- a/djfractions/__init__.py +++ b/djfractions/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.1.0" +__version__ = "5.0.0" import fractions import re diff --git a/setup.cfg b/setup.cfg index 0ae38cf..50956d2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.1.0 +current_version = 5.0.0 commit = False tag = False