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 #21 from snoonetIRC/release-0.3
Browse files Browse the repository at this point in the history
Release 0.3.0
  • Loading branch information
linuxdaemon authored Aug 28, 2019
2 parents 6b68168 + d1e0df9 commit ff7afac
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.3.0] 2019-08-28
### Added
- Add a changelog to track project changes
- Separate conversation storage with `Conversation` objects
Expand All @@ -21,5 +23,6 @@ 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.2.3.6..HEAD
[Unreleased]: https://github.com/snoonetIRC/cleverwrap.py/compare/v0.3.0..HEAD
[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, 2, 3, 2)
__version__ = (0, 3, 0)
2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,20 @@ def get_constraints(reqs):
yield '{}=={}'.format(name, constraints[name])


def read_file(name):
with open(name) as f:
return f.read()


setup(
name='cleverwrap',
packages=['cleverwrap'],
license='MIT',
install_requires=get_constraints(install_requires),
version='.'.join(cleverwrap.__version__),
description='A wrapper for the official cleverbot.com API',
long_description=read_file('README.md'),
long_description_content_type='text/markdown',
author='Andrew Edwards',
author_email='[email protected]',
url='https://github.com/snoonetIRC/cleverwrap.py',
Expand Down

0 comments on commit ff7afac

Please sign in to comment.