Skip to content

Commit

Permalink
Release v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
imiric committed Aug 25, 2023
1 parent d3ad786 commit 24ebc5a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2.0.0 / 2023-08-25
==================

* Removed support for Python 2.x.
* Fixed support for Python >=3.11. Thanks @ricojuinio!
* Fixed tests for latest pytest version.

1.3.0 / 2014-06-27
==================

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
setup(
name='timebook',
version=get_version(),
url='http://bitbucket.org/trevor/timebook/',
url='https://github.com/imiric/timebook',
description='track what you spend time on',
author='Trevor Caira',
author_email='[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion timebook/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

__author__ = 'Trevor Caira <[email protected]>'
__version__ = (1, 3, 0)
__version__ = (2, 0, 0)

def get_version():
return '.'.join(str(bit) for bit in __version__)

0 comments on commit 24ebc5a

Please sign in to comment.