This repository was archived by the owner on Apr 14, 2024. It is now read-only.
File tree 4 files changed +12
-4
lines changed
4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 2
2
Changelog
3
3
#########
4
4
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
+
5
13
*****
6
14
0.6.0
7
15
*****
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ def _init_externals():
27
27
__author__ = "Sebastian Thiel"
28
28
__contact__ = "byronimo@gmail.com"
29
29
__homepage__ = "https://github.com/gitpython-developers/gitdb"
30
- version_info = (0 , 6 , 0 )
30
+ version_info = (0 , 6 , 1 )
31
31
__version__ = '.' .join (str (i ) for i in version_info )
32
32
33
33
Original file line number Diff line number Diff line change @@ -148,8 +148,8 @@ def test_compressed_writer(self):
148
148
def test_decompress_reader_special_case (self ):
149
149
odb = LooseObjectDB (fixture_path ('objects' ))
150
150
mdb = MemoryDB ()
151
- for sha in ('888401851f15db0eed60eb1bc29dec5ddcace911' ,
152
- '7bb839852ed5e3a069966281bb08d50012fb309b' ,):
151
+ for sha in (b '888401851f15db0eed60eb1bc29dec5ddcace911' ,
152
+ b '7bb839852ed5e3a069966281bb08d50012fb309b' ,):
153
153
ostream = odb .stream (hex_to_bin (sha ))
154
154
155
155
# if there is a bug, we will be missing one byte exactly !
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ def get_data_files(self):
73
73
__author__ = "Sebastian Thiel"
74
74
__contact__ = "byronimo@gmail.com"
75
75
__homepage__ = "https://github.com/gitpython-developers/gitdb"
76
- version_info = (0 , 6 , 0 )
76
+ version_info = (0 , 6 , 1 )
77
77
__version__ = '.' .join (str (i ) for i in version_info )
78
78
79
79
setup (cmdclass = {'build_ext' :build_ext_nofail },
You can’t perform that action at this time.
0 commit comments