Skip to content

Commit

Permalink
Use newer links for hosted documentation.
Browse files Browse the repository at this point in the history
 - Update classifiers for project release.
 - Update email address for communication.
  • Loading branch information
hjpotter92 committed Mar 20, 2021
1 parent 3e2a7ab commit 20d8fbf
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
8 changes: 7 additions & 1 deletion docs/src/changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
Changelog and release history
-----------------------------

## [1.2.0](https://pypi.org/project/sonyflake-py/1.1.0/) (2021-03-18)
## [1.2.1](https://pypi.org/project/sonyflake-py/1.2.1/) (2021-03-20)

- Update links for documentation.
- Add release notes to pypi page.
- Update contact email address.

## [1.2.0](https://pypi.org/project/sonyflake-py/1.2.0/) (2021-03-18)

- Use `@property` for immutable data.
- Add self-documentation.
Expand Down
11 changes: 7 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,22 @@
packages=find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Distributed Computing",
],
python_requires=">=3.6",
project_urls={
"Documentation": "https://sonyflake-py.projects.hjpotter92.tech/",
"Documentation": "https://sonyflake-py.rtfd.io/",
"Code coverage": "https://app.codecov.io/gh/hjpotter92/sonyflake-py",
"Builds history": "https://travis-ci.com/hjpotter92/sonyflake-py",
"Changelog": "https://sonyflake-py.rtfd.io/changelog",
},
tests_require=(
"codecov>=2.1.11",
Expand Down
4 changes: 2 additions & 2 deletions sonyflake/about.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

MAJOR: int = 1
MINOR: int = 2
PATCH: int = 0
PATCH: int = 1
SUFFIX: str = ""

NAME: str = "sonyflake-py"

AUTHOR: Dict[str, str] = {
"name": "hjpotter92",
"email": "hjpotter92+pypi@gmail.com",
"email": f"{NAME}@pypi.hjpotter92.email",
}
MAINTAINER: Dict[str, str] = AUTHOR

Expand Down

0 comments on commit 20d8fbf

Please sign in to comment.