Skip to content
This repository was archived by the owner on Feb 10, 2022. It is now read-only.
This repository is currently being migrated. It's locked while the migration is in progress.

Commit 98a9647

Browse files
committed
Bumped version to 0.6.0.
1 parent ec5412d commit 98a9647

4 files changed

Lines changed: 21 additions & 3 deletions

File tree

NEWS.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ look at the `git repository`_ for the full project history.
88

99
.. contents::
1010

11+
0.6.0 - 2011-12-21
12+
------------------
13+
14+
* Now uses system certificates for SSL validation where possible
15+
* Python 3 is supported directly, without a separate ``2to3`` build step
16+
1117
0.5.2 - 2011-09-02
1218
------------------
1319

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ github2 - Github API v2 library for Python.
44

55
:Authors:
66
Ask Solem (askh@opera.com)
7-
:Version: 0.5.2
7+
:Version: 0.6.0
88

99
This is a Python library implementing all of the features available in version 2
1010
of the `Github API`_.

github2/__init__.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
"Github API v2 library for Python"
2-
VERSION = (0, 5, 2)
2+
3+
from github2 import _version
4+
5+
VERSION = _version.tuple
36

47
__author__ = "Ask Solem"
58
__contact__ = "askh@opera.com"
69
__homepage__ = "http://github.com/ask/python-github2"
7-
__version__ = ".".join(map(str, VERSION))
10+
__version__ = _version.dotted

github2/_version.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# This is github2 version 0.6.0 (2011-12-21)
2+
# pylint: disable=C0103, C0111, C0121, W0622
3+
4+
dotted = "0.6.0"
5+
libtool = "6:20"
6+
hex = 0x000600
7+
date = "2011-12-21"
8+
tuple = (0, 6, 0)
9+
web = "github/0.6.0"

0 commit comments

Comments
 (0)