Skip to content

Commit

Permalink
Update ZStandard library and version to 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Dryabzhinsky committed Feb 9, 2017
1 parent d171dbc commit d2bed47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools import setup, find_packages, Extension
from setuptools.command.build_ext import build_ext

VERSION = (1, 1, 2)
VERSION = (1, 1, 3)
VERSION_STR = ".".join([str(x) for x in VERSION])

# Minor versions
Expand Down
2 changes: 1 addition & 1 deletion zstd
Submodule zstd updated 96 files
+9 −0 .buckconfig
+1 −0 .buckversion
+3 −0 .gitignore
+49 −22 .travis.yml
+30 −9 Makefile
+16 −0 NEWS
+20 −10 README.md
+11 −4 appveyor.yml
+28 −0 build/VS2005/fuzzer/fuzzer.vcproj
+16 −4 build/VS2005/zstd/zstd.vcproj
+32 −0 build/VS2005/zstdlib/zstdlib.vcproj
+28 −0 build/VS2008/fuzzer/fuzzer.vcproj
+36 −8 build/VS2008/zstd/zstd.vcproj
+28 −0 build/VS2008/zstdlib/zstdlib.vcproj
+2 −0 build/VS2010/fullbench-dll/fullbench-dll.vcxproj
+7 −0 build/VS2010/fuzzer/fuzzer.vcxproj
+3 −3 build/VS2010/libzstd-dll/libzstd-dll.rc
+9 −1 build/VS2010/libzstd-dll/libzstd-dll.vcxproj
+9 −1 build/VS2010/libzstd/libzstd.vcxproj
+13 −4 build/VS2010/zstd/zstd.vcxproj
+18 −30 build/cmake/lib/CMakeLists.txt
+13 −28 build/cmake/programs/CMakeLists.txt
+1 −1 build/cmake/tests/CMakeLists.txt
+72 −0 contrib/pzstd/BUCK
+2 −2 contrib/pzstd/Makefile
+1 −1 contrib/pzstd/Options.cpp
+0 −5 contrib/pzstd/main.cpp
+37 −0 contrib/pzstd/test/BUCK
+29 −35 contrib/pzstd/test/PzstdTest.cpp
+75 −0 contrib/pzstd/utils/BUCK
+35 −0 contrib/pzstd/utils/test/BUCK
+ doc/images/dict-cr.png
+ doc/images/dict-cs.png
+ doc/images/dict-ds.png
+ doc/images/smallData.png
+99 −54 doc/zstd_compression_format.md
+186 −0 lib/BUCK
+58 −31 lib/Makefile
+1 −1 lib/common/mem.h
+194 −0 lib/common/pool.c
+56 −0 lib/common/pool.h
+79 −0 lib/common/threading.c
+104 −0 lib/common/threading.h
+0 −4 lib/common/zstd_common.c
+16 −2 lib/common/zstd_errors.h
+9 −0 lib/common/zstd_internal.h
+94 −51 lib/compress/zstd_compress.c
+6 −6 lib/compress/zstd_opt.h
+740 −0 lib/compress/zstdmt_compress.c
+78 −0 lib/compress/zstdmt_compress.h
+39 −22 lib/decompress/zstd_decompress.c
+26 −0 lib/deprecated/zbuff_common.c
+1,021 −0 lib/dictBuilder/cover.c
+60 −12 lib/dictBuilder/zdict.c
+109 −19 lib/dictBuilder/zdict.h
+2 −0 lib/dll/example/fullbench-dll.vcxproj
+13 −19 lib/legacy/zstd_v04.c
+4 −2 lib/legacy/zstd_v05.c
+3 −3 lib/legacy/zstd_v07.c
+53 −25 lib/zstd.h
+1 −0 programs/.gitignore
+63 −0 programs/BUCK
+79 −49 programs/Makefile
+104 −42 programs/bench.c
+9 −6 programs/bench.h
+1 −20 programs/datagen.c
+91 −13 programs/dibio.c
+2 −2 programs/dibio.h
+129 −60 programs/fileio.c
+11 −2 programs/fileio.h
+135 −0 programs/platform.h
+55 −67 programs/util.h
+ programs/windres/zstd32.res
+ programs/windres/zstd64.res
+137 −1 programs/zstd.1
+143 −45 programs/zstdcli.c
+2 −1 programs/zstdless
+6 −0 tests/.gitignore
+79 −28 tests/Makefile
+23 −0 tests/fullbench.c
+66 −0 tests/fuzzer.c
+51 −0 tests/invalidDictionaries.c
+57 −19 tests/playTests.sh
+70 −0 tests/pool.c
+145 −0 tests/symbols.c
+378 −60 tests/zstreamtest.c
+3 −0 zlibWrapper/.gitignore
+22 −0 zlibWrapper/BUCK
+2 −2 zlibWrapper/examples/fitblk.c
+9 −9 zlibWrapper/examples/zwrapbench.c
+22 −0 zlibWrapper/gzcompatibility.h
+16 −7 zlibWrapper/gzguts.h
+21 −18 zlibWrapper/gzlib.c
+122 −64 zlibWrapper/gzread.c
+215 −127 zlibWrapper/gzwrite.c
+66 −33 zlibWrapper/zstd_zlibwrapper.c

0 comments on commit d2bed47

Please sign in to comment.