Skip to content

Commit fa41067

Browse files
committed
fixes for make release
1 parent 35954e7 commit fa41067

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [2.0.23] - 2018-05-02
8+
9+
- Fix for Markdown on PyPi, no code chang
10+
711
## [2.0.22] - 2018-05-02
812

913
### Fixed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11

22
.PHONY: release
33
release:
4-
python setup.py sdist bdist_wheel
4+
rm dist/*.whl dist/*.tar.gz
5+
python3 setup.py sdist bdist_wheel
56
twine upload dist/*.whl dist/*.tar.gz
67

78
.PHONY: test

fs/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version, used in module and setup.py.
22
"""
3-
__version__ = "2.0.22"
3+
__version__ = "2.0.23"

0 commit comments

Comments
 (0)