Skip to content

Commit 20d8fbf

Browse files
committed
Use newer links for hosted documentation.
- Update classifiers for project release. - Update email address for communication.
1 parent 3e2a7ab commit 20d8fbf

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

docs/src/changelog.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
Changelog and release history
22
-----------------------------
33

4-
## [1.2.0](https://pypi.org/project/sonyflake-py/1.1.0/) (2021-03-18)
4+
## [1.2.1](https://pypi.org/project/sonyflake-py/1.2.1/) (2021-03-20)
5+
6+
- Update links for documentation.
7+
- Add release notes to pypi page.
8+
- Update contact email address.
9+
10+
## [1.2.0](https://pypi.org/project/sonyflake-py/1.2.0/) (2021-03-18)
511

612
- Use `@property` for immutable data.
713
- Add self-documentation.

setup.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,22 @@
1717
packages=find_packages(),
1818
include_package_data=True,
1919
classifiers=[
20+
"Development Status :: 5 - Production/Stable",
21+
"Intended Audience :: Developers",
22+
"License :: OSI Approved :: MIT License",
23+
"Operating System :: OS Independent",
2024
"Programming Language :: Python :: 3",
2125
"Programming Language :: Python :: 3 :: Only",
2226
"Programming Language :: Python :: Implementation",
23-
"License :: OSI Approved :: MIT License",
24-
"Operating System :: OS Independent",
25-
"Intended Audience :: Developers",
2627
"Topic :: Software Development :: Libraries :: Python Modules",
28+
"Topic :: System :: Distributed Computing",
2729
],
2830
python_requires=">=3.6",
2931
project_urls={
30-
"Documentation": "https://sonyflake-py.projects.hjpotter92.tech/",
32+
"Documentation": "https://sonyflake-py.rtfd.io/",
3133
"Code coverage": "https://app.codecov.io/gh/hjpotter92/sonyflake-py",
3234
"Builds history": "https://travis-ci.com/hjpotter92/sonyflake-py",
35+
"Changelog": "https://sonyflake-py.rtfd.io/changelog",
3336
},
3437
tests_require=(
3538
"codecov>=2.1.11",

sonyflake/about.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
MAJOR: int = 1
44
MINOR: int = 2
5-
PATCH: int = 0
5+
PATCH: int = 1
66
SUFFIX: str = ""
77

88
NAME: str = "sonyflake-py"
99

1010
AUTHOR: Dict[str, str] = {
1111
"name": "hjpotter92",
12-
"email": "[email protected]",
12+
"email": f"{NAME}@pypi.hjpotter92.email",
1313
}
1414
MAINTAINER: Dict[str, str] = AUTHOR
1515

0 commit comments

Comments
 (0)