Skip to content

Commit d38c74f

Browse files
Upload v1.0.4 to PyPI
1 parent 15334cd commit d38c74f

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

CHANGELOG.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
<a name="Unreleased"></a>
22
## [Unreleased]
33

4+
5+
<a name="1.0.4"></a>
6+
## [1.0.4] (2019-04-17)
7+
8+
### Features
9+
* Added support for non-ASCII characters ([Redysz])
10+
11+
412
<a name="1.0.3"></a>
5-
## 1.0.3 (2019-01-28)
13+
## [1.0.3] (2019-01-28)
614

715
### Bug-Fixes
816
* Fixed bug preventing `docstr-coverage` from being properly installed via tox ([asergeant01])
@@ -15,4 +23,8 @@
1523
* Initial release
1624

1725
[asergeant01]: https://github.com/asergeant01
18-
[Unreleased]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.0.3...HEAD
26+
[Redysz]: https://github.com/Redysz
27+
28+
[Unreleased]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.0.4...HEAD
29+
[1.0.4]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.0.3...v1.0.4
30+
[1.0.3]: https://github.com/HunterMcGushion/docstr_coverage/compare/v1.0.2...v1.0.3

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
author = "Hunter McGushion"
2222

2323
version = "" # The short X.Y version
24-
release = "1.0.3" # The full version, including alpha/beta/rc tags
24+
release = "1.0.4" # The full version, including alpha/beta/rc tags
2525

2626
##################################################
2727
# General Configuration

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def readme():
66
return f.read()
77

88

9-
MAJOR, MINOR, MICRO = 1, 0, 3
9+
MAJOR, MINOR, MICRO = 1, 0, 4
1010
__VERSION__ = "{}.{}.{}".format(MAJOR, MINOR, MICRO)
1111

1212
setup(
@@ -25,7 +25,7 @@ def readme():
2525
author="Hunter McGushion",
2626
author_email="[email protected]",
2727
license="MIT",
28-
packages=['docstr_coverage'],
28+
packages=["docstr_coverage"],
2929
install_requires=[],
3030
include_package_data=True,
3131
zip_safe=False,

0 commit comments

Comments
 (0)