Skip to content

Commit

Permalink
v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ljcooke committed Apr 24, 2016
1 parent cd47b05 commit a54eeea
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
3 changes: 3 additions & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,8 @@ suggestions from various contributors:
- `Steve Losh <https://github.com/sjl>`__
- `Adam Lloyd <https://github.com/alloy-d>`__
- `Andrei Fokau <https://github.com/andreif>`__
- `Christopher Toth <https://github.com/ctoth>`__
- `Elias Fotinis <https://github.com/efotinis>`__
- `Frederic De Groef <https://github.com/sevas>`__
- `hugovk <https://github.com/hugovk>`__
- `dbaker <https://github.com/d-baker>`__
14 changes: 11 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,21 @@ All notable changes to this project will be documented in this file. This
project adheres to `Semantic Versioning <http://semver.org>`__ as of v1.1.0.


Unreleased_
-----------
.. Unreleased_
.. --------------------
v1.3.0_ / 2016-04-24
--------------------

**Added**

- Unit tests, continuous integration with Travis, and coverage reports
published on Coveralls.io.

- For Windows, adjust the output to fit the terminal width as on other
platforms.

**Fixed**

- Replaced one instance of ``dir`` with ``hasattr``.
Expand Down Expand Up @@ -215,8 +222,9 @@ v0.1 / 2009-02-16
- Original release.


.. _unreleased: https://github.com/inky/see/compare/v1.2.0...develop
.. _unreleased: https://github.com/inky/see/compare/v1.3.0...develop

.. _v1.3.0: https://github.com/inky/see/compare/v1.2.0...v1.3.0
.. _v1.2.0: https://github.com/inky/see/compare/v1.1.1...v1.2.0
.. _v1.1.1: https://github.com/inky/see/compare/v1.1.0...v1.1.1
.. _v1.1.0: https://github.com/inky/see/compare/v1.0.1...v1.1.0
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,7 @@ lint:
clean:
rm -vrf build ./*.pyc see/*.pyc __pycache__ see/__pycache__
test -d see && rmdir see || true

.PHONY: dist
dist:
python setup.py sdist --formats=bztar,gztar,zip
2 changes: 1 addition & 1 deletion see.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

__author__ = 'Liam Cooke'
__contributors__ = 'See AUTHORS.rst'
__version__ = '1.3.0-alpha.1'
__version__ = '1.3.0'
__copyright__ = 'Copyright (c) 2009-2016 Liam Cooke'
__license__ = 'BSD License'

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
]

setup(name='see',
version='1.3.0-alpha.1',
version='1.3.0',
description='dir for humans',
author='Liam Cooke',
author_email='[email protected]',
Expand Down

0 comments on commit a54eeea

Please sign in to comment.