Skip to content

Commit e3d11ff

Browse files
committed
Release v0.1b2
1 parent 9650748 commit e3d11ff

3 files changed

Lines changed: 12 additions & 3 deletions

File tree

HISTORY.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ History/Changelog
66

77
- 100% unit test coverage
88

9+
0.1b2: 2012-11-10
10+
-----------------
11+
12+
- Handle 500 errors better, courtesy of Kristian Glass (@doismellburning)
13+
- Handle sending json with `%` symbols better, courtesy of Kristian Glass
14+
- Correctly handle non-GitHub committers and authors courtesy of Paul Swartz
15+
(@paulswartz)
16+
- Correctly display method signatures in documentatio
17+
918
0.1b1: 2012-10-31
1019
-----------------
1120

github3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
__author__ = 'Ian Cordasco'
1414
__license__ = 'Modified BSD'
1515
__copyright__ = 'Copyright 2012 Ian Cordasco'
16-
__version__ = '0.1b1'
16+
__version__ = '0.1b2'
1717

1818
from github3.api import *
1919
from github3.github import GitHub

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
try:
88
from setuptools import setup
99
except ImportError:
10-
from distutils.core import setup
10+
from distutils.core import setup # NOQA
1111

1212
if sys.argv[-1] in ("submit", "publish"):
1313
os.system("python setup.py sdist upload")
@@ -18,7 +18,7 @@
1818
"github3.packages",
1919
"github3.packages.PySO8601",
2020
]
21-
requires = ["requests>=0.14.2"]
21+
requires = ["requests==0.14.1"]
2222

2323
__version__ = ''
2424
with open('github3/__init__.py', 'r') as fd:

0 commit comments

Comments
 (0)