From bab123bf7f399ef2d849105961852d5420d01b65 Mon Sep 17 00:00:00 2001 From: jrconlin Date: Fri, 2 Apr 2021 08:47:52 -0700 Subject: [PATCH] chore: tag 1.8.1 * remove useless CHANGELOG stub * update README to point to the `git log` for changes --- python/CHANGELOG.md | 0 python/README.md | 6 +++++- python/setup.py | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) delete mode 100644 python/CHANGELOG.md diff --git a/python/CHANGELOG.md b/python/CHANGELOG.md deleted file mode 100644 index e69de29..0000000 diff --git a/python/README.md b/python/README.md index 78138ad..2bb3db5 100644 --- a/python/README.md +++ b/python/README.md @@ -85,8 +85,12 @@ for more details. Be aware that this value is tied to the generated public/private key. If you remove or generate a new key, any restricted URL you've previously generated will need to be reallocated. Please note that some User Agents may require you [to -decode this string into a Uint8Array](https://github.com/GoogleChrome/push-notifications/blob/master/app/scripts/main.js). +decode this string into a Uint8Array](https://github.com/GoogleChrome/push-notifications/blob/master/app/scripts/main.js). See `bin/vapid -h` for all options and commands. +## CHANGELOG +I'm terrible about updating the Changelog. Please see the [`git +log`](https://github.com/web-push-libs/vapid/pulls?q=is%3Apr+is%3Aclosed) +history for details. diff --git a/python/setup.py b/python/setup.py index c59bc07..e4b4a02 100644 --- a/python/setup.py +++ b/python/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages -__version__ = "1.8.0" +__version__ = "1.8.1" def read_from(file): @@ -44,7 +44,7 @@ def read_from(file): include_package_data=True, zip_safe=False, packages=find_packages(), - package_data={'': ['README.rst', 'CHANGELOG.rst', + package_data={'': ['README.rst', 'requirements.txt', 'test-requirements.txt']}, install_requires=read_from('requirements.txt'), tests_require=read_from('test-requirements.txt'),