Skip to content

Commit

Permalink
Up minor version
Browse files Browse the repository at this point in the history
  • Loading branch information
Skelmis committed Feb 6, 2022
1 parent 5015dc0 commit 1573993
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.1.3"
__version__ = "1.2.0"

from antispam.anti_spam_handler import AntiSpamHandler
from antispam.exceptions import *
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=1, micro=3, releaselevel="final", serial=0)
version_info = VersionInfo(major=1, minor=2, micro=0, releaselevel="final", serial=0)


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

0 comments on commit 1573993

Please sign in to comment.