Skip to content
This repository has been archived by the owner on Feb 23, 2021. It is now read-only.

Commit

Permalink
Merge pull request #22 from snoonetIRC/release-0.3.0.1
Browse files Browse the repository at this point in the history
Release 0.3.0.1
  • Loading branch information
linuxdaemon authored Aug 28, 2019
2 parents ff7afac + 5538a2b commit 25d1280
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0.1] 2019-08-28
### Fixed
- Fix parsing requirements.txt during deployment

## [0.3.0] 2019-08-28
### Added
- Add a changelog to track project changes
Expand All @@ -23,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.2.3.6] 2017-06-18
Undocumented changes

[Unreleased]: https://github.com/snoonetIRC/cleverwrap.py/compare/v0.3.0..HEAD
[Unreleased]: https://github.com/snoonetIRC/cleverwrap.py/compare/v0.3.0.1..HEAD
[0.3.0.1]: https://github.com/snoonetIRC/cleverwrap.py/compare/v0.3.0..v0.3.0.1
[0.3.0]: https://github.com/snoonetIRC/cleverwrap.py/compare/v0.2.3.6..v0.3.0
[0.2.3.6]: https://github.com/snoonetIRC/cleverwrap.py/releases/tag/v0.2.3.6
2 changes: 1 addition & 1 deletion cleverwrap/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .cleverwrap import CleverWrap

__version__ = (0, 3, 0)
__version__ = (0, 3, 0, 1)
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ def parse_contstraints():

match = req_re.match(line)

if not match:
continue

name, ver = match.groups()
d[name] = ver

Expand Down

0 comments on commit 25d1280

Please sign in to comment.