Skip to content

Commit

Permalink
Update to zstd-1.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Dryabzhinsky committed Dec 30, 2018
1 parent cbdfbe2 commit 5e293aa
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions PKG-INFO
@@ -1,12 +1,12 @@
Metadata-Version: 1.1
Name: zstd
Version: 1.3.5.1
Version: 1.3.8.0
Summary: Simple python bindings to Yann Collet ZSTD compression library
Home-page: https://github.com/sergey-dryabzhinsky/python-zstd
Author: Sergey Dryabzhinsky
Author-email: sergey.dryabzhinsky@gmail.com
License: BSD
Download-URL: https://github.com/sergey-dryabzhinsky/python-zstd/archive/v1.3.5.1.tar.gz
Download-URL: https://github.com/sergey-dryabzhinsky/python-zstd/archive/v1.3.8.0.tar.gz
Description: Simple ZSTandarD bindings for Python
Keywords: zstd,zstandard,compression
Platform: POSIX
6 changes: 3 additions & 3 deletions README.rst
Expand Up @@ -94,11 +94,11 @@ Module has simple API:
>>> dir(zstd)
['Error', 'ZSTD_compress', 'ZSTD_uncompress', 'ZSTD_version', 'ZSTD_version_number', '__doc__', '__file__', '__name__', '__package__', 'compress', 'decompress', 'dumps', 'loads', 'uncompress', 'version']
>>> zstd.version()
'1.3.4.1'
'1.3.8.0'
>>> zstd.ZSTD_version()
'1.3.4'
'1.3.8'
>>> zstd.ZSTD_version_number()
10304
10308
>>> data = "123456qwert"
>>> cdata = zstd.compress(data, 1)
>>> data == zstd.decompress(cdata)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -8,13 +8,13 @@
from setuptools.command.build_ext import build_ext

# ZSTD version
VERSION = (1, 3, 5,)
VERSION = (1, 3, 8,)
VERSION_STR = ".".join([str(x) for x in VERSION])

# Package version
PKG_VERSION = VERSION
# Minor versions
PKG_VERSION += ("1",)
PKG_VERSION += ("0",)
PKG_VERSION_STR = ".".join([str(x) for x in PKG_VERSION])

###
Expand Down
2 changes: 1 addition & 1 deletion zstd
Submodule zstd updated 227 files

0 comments on commit 5e293aa

Please sign in to comment.