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 #23 from snoonetIRC/release-0.3.0.2
Browse files Browse the repository at this point in the history
Release 0.3.0.2
  • Loading branch information
linuxdaemon authored Aug 29, 2019
2 parents 25d1280 + 86d31de commit b804aa2
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ install:
- pip install -r requirements.txt
script:
- pytest
- python setup.py build
after_success:
- codecov
deploy:
Expand Down
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0.2] 2019-08-28
### Added
- Add full build tests to travis

### Fixed
- Fix parsing version in setup.py
- Fix version constraint regex in setup.py

## [0.3.0.1] 2019-08-28
### Fixed
- Fix parsing requirements.txt during deployment
Expand All @@ -27,7 +35,8 @@ 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.1..HEAD
[Unreleased]: https://github.com/snoonetIRC/cleverwrap.py/compare/v0.3.0.2..HEAD
[0.3.0.2]: https://github.com/snoonetIRC/cleverwrap.py/compare/v0.3.0.1..v0.3.0.2
[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, 1)
__version__ = (0, 3, 0, 2)
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'requests',
]

req_re = re.compile(r'([^=\s]+)==([^\s]+)')
req_re = re.compile(r'([^=\s]+)(?:==|>=|<=)([^\s]+)')
reqs_file = open('requirements.txt').read().splitlines()


Expand Down Expand Up @@ -51,7 +51,7 @@ def read_file(name):
packages=['cleverwrap'],
license='MIT',
install_requires=get_constraints(install_requires),
version='.'.join(cleverwrap.__version__),
version='.'.join(str(n) for n in cleverwrap.__version__),
description='A wrapper for the official cleverbot.com API',
long_description=read_file('README.md'),
long_description_content_type='text/markdown',
Expand Down

0 comments on commit b804aa2

Please sign in to comment.