Skip to content
This repository was archived by the owner on Apr 14, 2024. It is now read-only.

Commit 46a4a79

Browse files
committed
Bumped new version
Fixed tiny issue in python 3
1 parent 0d22c80 commit 46a4a79

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

doc/source/changes.rst

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
Changelog
33
#########
44

5+
*****
6+
0.6.1
7+
*****
8+
9+
* Fixed possibly critical error, see https://github.com/gitpython-developers/GitPython/issues/220
10+
11+
- However, it only seems to occour on high-entropy data and didn't reoccour after the fix
12+
513
*****
614
0.6.0
715
*****

gitdb/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def _init_externals():
2727
__author__ = "Sebastian Thiel"
2828
__contact__ = "byronimo@gmail.com"
2929
__homepage__ = "https://github.com/gitpython-developers/gitdb"
30-
version_info = (0, 6, 0)
30+
version_info = (0, 6, 1)
3131
__version__ = '.'.join(str(i) for i in version_info)
3232

3333

gitdb/test/test_stream.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,8 @@ def test_compressed_writer(self):
148148
def test_decompress_reader_special_case(self):
149149
odb = LooseObjectDB(fixture_path('objects'))
150150
mdb = MemoryDB()
151-
for sha in ('888401851f15db0eed60eb1bc29dec5ddcace911',
152-
'7bb839852ed5e3a069966281bb08d50012fb309b',):
151+
for sha in (b'888401851f15db0eed60eb1bc29dec5ddcace911',
152+
b'7bb839852ed5e3a069966281bb08d50012fb309b',):
153153
ostream = odb.stream(hex_to_bin(sha))
154154

155155
# if there is a bug, we will be missing one byte exactly !

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def get_data_files(self):
7373
__author__ = "Sebastian Thiel"
7474
__contact__ = "byronimo@gmail.com"
7575
__homepage__ = "https://github.com/gitpython-developers/gitdb"
76-
version_info = (0, 6, 0)
76+
version_info = (0, 6, 1)
7777
__version__ = '.'.join(str(i) for i in version_info)
7878

7979
setup(cmdclass={'build_ext':build_ext_nofail},

0 commit comments

Comments
 (0)