Skip to content

Commit

Permalink
[Release] v1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
MinchinWeb committed Jul 20, 2015
1 parent 5f52741 commit e993e30
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 6 deletions.
1 change: 1 addition & 0 deletions build-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
pip
wheel
setuptools
twine
2 changes: 1 addition & 1 deletion colourettu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
from ._palette import palette


__version__ = '1.1.0-a2'
__version__ = '1.1.0'
1 change: 1 addition & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Changelog

.. currentmodule:: colourettu

- :release:`1.1.0 <2015-07-20>`
- :support:`5` add project logo
- :feature:`8` allow addition of palettes, and palettes and colours
- :support:`-` manage changelog with `Releases <https://github.com/bitprophet/releases>`_
Expand Down
2 changes: 1 addition & 1 deletion make_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
print(' cd ..')
print('Build distribution')
print(' python -m pip install pip -U')
print(' pip install setuptools twine -U')
print(' pip install setuptools wheel twine -U')
print(' python setup.py sdist bdist_egg bdist_wheel')
print('Test distribution')
# see https://hynek.me/articles/sharing-your-labor-of-love-pypi-quick-and-dirty/
Expand Down
7 changes: 6 additions & 1 deletion readme.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@ Installation
Documentation
-------------

Full documentation is at http://minchin.ca/colourettu/
Full documentation is available at http://minchin.ca/colourettu/

Changelog
---------

Full changelog is available at http://minchin.ca/colourettu/changelog.html

Links
-----
Expand Down
7 changes: 7 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[zest.releaser]
python-file-with-version = colourettu/__init__.py
create-wheel = yes
extra-message = [ci skip]

[wheel]
universal = 1
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def find_version(*file_paths):
raise RuntimeError("Unable to find version string.")


long_description = read('readme.rst') + '\n' + read('changes.rst')
long_description = read('readme.rst')


setup(
Expand All @@ -29,13 +29,13 @@ def find_version(*file_paths):
url='http://github.com/minchinweb/colourettu',
license='MIT License',
author='William Minchin',
install_requires=['',
install_requires=['Pillow',
],
author_email='w_minchin@hotmail.com',
description='Colour related functions',
long_description=long_description,
packages=['colourettu'],
package_data={'': ['readme.rst', 'changes.rst', 'LICENSE']},
package_data={'': ['readme.rst', 'LICENSE']},
include_package_data=True,
platforms='any',
classifiers=[
Expand Down

0 comments on commit e993e30

Please sign in to comment.