Skip to content

Commit 7b758de

Browse files
committed
Bump version number to 1.1.0
1 parent 1135ada commit 7b758de

3 files changed

Lines changed: 24 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Change Log
22

33
## [Unreleased][unreleased]
4+
N/A
5+
6+
## [1.1.0]
47
### Added
58
- [Command line interface](http://yourls-python.readthedocs.org/en/latest/cli.html).
69
- Documentation section on exception handling.
@@ -21,6 +24,7 @@
2124

2225
First release.
2326

24-
[unreleased]: https://github.com/RazerM/yourls-python/compare/1.0.1...HEAD
27+
[unreleased]: https://github.com/RazerM/yourls-python/compare/1.1.0...HEAD
28+
[1.1.0]: https://github.com/RazerM/yourls-python/compare/1.0.1...1.1.0
2529
[1.0.1]: https://github.com/RazerM/yourls-python/compare/1.0.0...1.0.1
2630
[1.0.0]: https://github.com/RazerM/yourls-python/compare/0ef60c1cef3979df819c8f7c0819f1ca052368f6...1.0.0

docs/changelog.rst

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,28 @@
11
Change Log
22
==========
33

4-
`Unreleased <https://github.com/RazerM/yourls-python/compare/1.0.1...HEAD>`__
4+
`Unreleased <https://github.com/RazerM/yourls-python/compare/1.1.0...HEAD>`__
55
-----------------------------------------------------------------------------
66

77
N/A
88

9+
`1.1.0 <https://github.com/RazerM/yourls-python/compare/1.0.1...1.1.0>`__
10+
-------------------------------------------------------------------------
11+
12+
Added
13+
~~~~~
14+
15+
- `Command line
16+
interface <http://yourls-python.readthedocs.org/en/latest/cli.html>`__.
17+
- Documentation section on exception handling.
18+
19+
Changed
20+
~~~~~~~
21+
22+
- Rename ``yourls.api`` sub-module to ``yourls.data``.
23+
- Rename ``yourls.exc`` sub-module to ``yourls.exceptions``. Users
24+
should be importing directly from ``yourls`` anyway.
25+
926
`1.0.1 <https://github.com/RazerM/yourls-python/compare/1.0.0...1.0.1>`__ - 2015-11-01
1027
--------------------------------------------------------------------------------------
1128

yourls/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from .log import logger
1010

1111
__author__ = 'Frazer McLean <[email protected]>'
12-
__version__ = '1.0.1'
12+
__version__ = '1.1.0'
1313
__license__ = 'MIT'
1414
__description__ = 'Python client for YOURLS.'
1515

0 commit comments

Comments
 (0)