Skip to content

Commit

Permalink
version: Bump to 0.2.0. Update changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
wdoekes committed Apr 25, 2016
1 parent 8b08d6e commit abf60a6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
8 changes: 5 additions & 3 deletions CHANGES.rst
@@ -1,12 +1,14 @@
Changes
-------

* v0.1.4a:
* v0.2.0:

- Update build/PyPI info: move to Stable, add Python 3.4 version.
- Update build/PyPI info: move to Stable, add Python 3.4 and 3.5
version, fix Python 3 compatibility.
- Fix a few README RST issues. Update OAuth documentation.
- Add experimental ``exactonline.elements`` to use for easier object
- Add initial ``exactonline.elements`` to use for easier object
oriented data submissions.
- Add and improve SSL, API and Python3 tests.

* v0.1.3:

Expand Down
11 changes: 4 additions & 7 deletions Makefile
Expand Up @@ -9,13 +9,14 @@ default: cleanup vimmodelines pep compile test

dist: isclean $(PYFILES) $(DATAFILES)
# sdist likes a reStructuredText README.txt
cp -n README.rst README.txt
#cp -n README.rst README.txt
# do the sdist
$(PYTHON) setup.py sdist
##python setup.py register # only needed once
#python setup.py sdist upload
# clean up
$(RM) MANIFEST README.txt
$(RM) MANIFEST
#README.txt

install:
$(PYTHON) setup.py install
Expand Down Expand Up @@ -55,10 +56,6 @@ test: $(PYFILES)

vimmodelines:
find $(WHERE) -name '*.py' -size +0 '!' -perm -u=x -print0 | \
xargs --no-run-if-empty -0 grep -L '^# vim:' | \
xargs --no-run-if-empty -0 grep -L '^# v''im:' | \
xargs --no-run-if-empty -d\\n \
sed -i -e '1i# vim: set ts=8 sw=4 sts=4 et ai tw=79:'

#
#
#
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -10,9 +10,9 @@

setup(
name='exactonline',
version='0.1.4a',
version='0.2.0',
packages=['exactonline', 'exactonline.api'],
data_files=[('', ['LICENSE.txt', 'README.rst'])],
data_files=[('', ['LICENSE.txt', 'README.rst', 'CHANGES.rst'])],
description='Exact Online REST API Library in Python',
long_description=('\n\n\n'.join(long_descriptions)),
author='Walter Doekes, OSSO B.V.',
Expand Down

0 comments on commit abf60a6

Please sign in to comment.