Skip to content
This repository has been archived by the owner on Aug 13, 2022. It is now read-only.

Commit

Permalink
v3.9.0
Browse files Browse the repository at this point in the history
Signed-off-by: Reece Dunham <me@rdil.rocks>
  • Loading branch information
RDIL committed Jul 19, 2020
1 parent 910d755 commit e7b6656
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 12 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ Key:
* `+` means addition
* `-` means deletion

## v3.9.0

```diff
* Bump setuptools from 47.1.1 to 49.2.0
* Bump twine from 3.1.1 to 3.2.0
* Bump sphinx from 3.1.1 to 3.1.2
* Bump sphinx-rtd-theme from 0.4.3 to 0.5.0
+ Add dividers 269 through 280
```

## v3.8.0

```diff
Expand Down
12 changes: 12 additions & 0 deletions area4/dividers.txt
Original file line number Diff line number Diff line change
Expand Up @@ -267,3 +267,15 @@ $$$$$$$$$$$$
🚕🚕🚕🚕🚕🚕🚕🚕🚕🚕🚕🚕
🚙🚙🚙🚙🚙🚙🚙🚙🚙🚙🚙🚙
????????????
🍭🍭🍭🍭🍭🍭🍭🍭🍭🍭🍭🍭
🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒🍒
🎹🎹🎹🎹🎹🎹🎹🎹🎹🎹🎹🎹
♟♟♟♟♟♟♟♟♟♟♟♟
🏆🏆🏆🏆🏆🏆🏆🏆🏆🏆🏆🏆
✏️✏️✏️✏️✏️✏️✏️✏️✏️✏️✏️✏️
🧷🧷🧷🧷🧷🧷🧷🧷🧷🧷🧷🧷
🏷🏷🏷🏷🏷🏷🏷🏷🏷🏷🏷🏷
🃏🃏🃏🃏🃏🃏🃏🃏🃏🃏🃏🃏
🔔🔔🔔🔔🔔🔔🔔🔔🔔🔔🔔🔔
🔕🔕🔕🔕🔕🔕🔕🔕🔕🔕🔕🔕
⚙️⚙️⚙️⚙️⚙️⚙️⚙️⚙️⚙️⚙️⚙️⚙️
12 changes: 12 additions & 0 deletions docs/div-looks.rst
Original file line number Diff line number Diff line change
Expand Up @@ -274,6 +274,18 @@ Divider Looks
266. Cars alternative
267. Cars alternative 2
268. Question marks
269. Lolly pops
270. Cherries
271. Keyboards
272. Chess pawns
273. Trophies
274. Pencils
275. Safety pins
276. Tags
277. Jester cards
278. Bells
279. Crossed out bells
280. Gears
With more coming soon!

Expand Down
21 changes: 9 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,15 @@
import setuptools

# Package version:
VERSION = "3.8.0"
VERSION = "3.9.0"

# Read the long description:
with open("README.md", mode="r") as FILE_HANDLER:
LONG_DESCRIPTION = FILE_HANDLER.read()

# Keywords:
TAGS = ["area4", "dividers", "python", "utilities", "enhancements", "text"]
keywords = ["area4", "dividers", "python", "utilities", "enhancements", "text"]

# Classifiers:
CLASSIFIERS = [
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
Expand Down Expand Up @@ -46,17 +44,16 @@
]

# GitHub URL:
MainURL = "https://github.com/area4lib/area4"
homepage = "https://github.com/area4lib/area4"

# Other Project URLs:
URLs = {
urls = {
"Bug Tracker": "https://github.com/area4lib/area4/issues",
"Documentation": "https://area4.readthedocs.io/en/stable/",
"Source Code": "https://github.com/area4lib/area4",
"License": "https://github.com/area4lib/area4/blob/master/LICENSE",
}


setuptools.setup(
name="area4",
version=VERSION,
Expand All @@ -67,12 +64,12 @@
description="Dividers in Python, the easy way!",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url=MainURL,
url=homepage,
license="MIT",
packages=setuptools.find_packages(),
classifiers=CLASSIFIERS,
project_urls=URLs,
keywords=TAGS,
classifiers=classifiers,
project_urls=urls,
keywords=keywords,
include_package_data=True,
zip_safe=False,
python_requires=">3.3",
Expand Down

0 comments on commit e7b6656

Please sign in to comment.