Prepare the 1.6.0 release (#157)

This commit is contained in:
Jon Parise 2022-05-17 10:46:35 -07:00 committed by GitHub
parent 3c379339dd
commit 2341cb6a5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
Version 1.6.0
-------------
* Drop support for officially unsupported Python versions (< Python 3.7)
Version 1.5.1 Version 1.5.1
------------- -------------
* The ``HOST_OVERRIDE`` environment variable can be used to override the base URL. Useful when behind a reverseproxy. * The ``HOST_OVERRIDE`` environment variable can be used to override the base URL. Useful when behind a reverseproxy.

View file

@ -1,6 +1,6 @@
The MIT License (MIT) 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 Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal

View file

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 1.5.1 current_version = 1.6.0
commit = True commit = True
tag = True tag = True
files = setup.py snappass/__init__.py files = setup.py snappass/__init__.py

View file

@ -2,7 +2,7 @@ from setuptools import setup
setup( setup(
name='snappass', name='snappass',
version='1.5.1', version='1.6.0',
description="It's like SnapChat... for Passwords.", description="It's like SnapChat... for Passwords.",
long_description=(open('README.rst').read() + '\n\n' + long_description=(open('README.rst').read() + '\n\n' +
open('AUTHORS.rst').read()), open('AUTHORS.rst').read()),