Skip to content

Commit

Permalink
release: Update version number, add classifers and update changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
adambirds committed Feb 24, 2022
1 parent 58aa8fd commit c1810c2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,10 @@ Note that `xkcd-pass` can be used with any word file of the correct format: a fi
* Fixed issue with codecov badge in docs.
* Update example docs to use correct defaults.
* Fixed issue with prep-dev-environment script.
* **Version 1.1.2**
* Fix dependency issues.
* Add more PyPi classifiers.
* Make CI run tests on multiple Python versions.

## License

Expand Down
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
install_requires = ["argcomplete"]
setuptools.setup(
name="xkcd-pass",
version="1.1.1",
version="1.1.2",
author="Adam Birds",
author_email="[email protected]",
description="Generate secure multiword passwords/passphrases, inspired by XKCD",
Expand All @@ -19,7 +19,13 @@
license="LGPLv3",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
],
entry_points={"console_scripts": ["xkcd-pass=xkcd_pass.xkcd_pass:main"]},
Expand Down

0 comments on commit c1810c2

Please sign in to comment.