Skip to content

Commit 6d9aca4

Browse files
committed
added 0.8.3
1 parent 34ec82d commit 6d9aca4

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ Changes will fall under the following categories:
2727
### Changed
2828
- python-semantic-release to automate [sematic versioning](https://python-semantic-release.readthedocs.io/en/latest/automatic-releases/index.html#automatic) with travis-ci, twine, github tags/releases, and setuptools
2929

30+
## [0.8.3] - 2020-09-11
31+
### Added
32+
- __version__ variable
33+
34+
3035
## [0.8.2] - 2020-09-10
3136
### Fixed
3237
- minor syntax errors in build
@@ -130,8 +135,9 @@ Changes will fall under the following categories:
130135

131136

132137
[Unreleased]: https://github.com/signebedi/mercutio/compare/0.9.0...HEAD
133-
[0.9.0]: https://github.com/signebedi/mercutio/compare/0.8.2...0.9.0
134-
[0.8.2]: https://github.com/signebedi/mercutio/compare/0.8.0...0.8.2
138+
[0.9.0]: https://github.com/signebedi/mercutio/compare/0.8.3...0.9.0
139+
[0.8.3]: https://github.com/signebedi/mercutio/compare/0.8.2...0.8.3
140+
[0.8.2]: https://github.com/signebedi/mercutio/compare/0.8.1...0.8.2
135141
[0.8.1]: https://github.com/signebedi/mercutio/compare/0.8.0...0.8.1
136142
[0.8.0]: https://github.com/signebedi/mercutio/compare/0.7.2...0.8.0
137143
[0.7.2]: https://github.com/signebedi/mercutio/compare/0.7.1...0.7.2

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
with open("README.md", "r") as f:
55
LONG_DESCRIPTION = re.sub(r'![cropped dragon gif](docs/cropped.gif)', '', f.read()) # substitute out the gif image
66

7+
# based on https://stackoverflow.com/questions/458550/standard-way-to-embed-version-into-python-package
78
with open(os.path.join('src', 'mercutio', '_version.py')) as f:
89
versionstr = f.read()
910
regex = r"^__version__ = ['\"]([\d\.]*)['\"]"

src/mercutio/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.9.0"
1+
__version__ = "0.8.3"

0 commit comments

Comments
 (0)