File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 22Changelog
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*****
6140.6.0
715*****
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 !
Original file line number Diff line number Diff 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
7979setup (cmdclass = {'build_ext' :build_ext_nofail },
You can’t perform that action at this time.
0 commit comments