diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a191120..cfcdd8a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,7 @@ +Version 1.6.0 +------------- +* Drop support for officially unsupported Python versions (< Python 3.7) + Version 1.5.1 ------------- * The ``HOST_OVERRIDE`` environment variable can be used to override the base URL. Useful when behind a reverseproxy. diff --git a/LICENSE b/LICENSE index fa6a9b5..1d7dfdf 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2012-2013 Pinterest +Copyright (c) 2012-2022 Pinterest Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/setup.cfg b/setup.cfg index 711b395..64ce37d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.1 +current_version = 1.6.0 commit = True tag = True files = setup.py snappass/__init__.py diff --git a/setup.py b/setup.py index 6801019..b5410d7 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='snappass', - version='1.5.1', + version='1.6.0', description="It's like SnapChat... for Passwords.", long_description=(open('README.rst').read() + '\n\n' + open('AUTHORS.rst').read()),