Skip to content

Commit

Permalink
global: bump version to 0.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
indygreg committed Nov 3, 2018
1 parent f4fb066 commit af60771
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion c-ext/python-zstandard.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include <zdict.h>

/* Remember to change the string in zstandard/__init__ as well */
#define PYTHON_ZSTANDARD_VERSION "0.10.1"
#define PYTHON_ZSTANDARD_VERSION "0.10.2"

typedef enum {
compressorobj_flush_finish,
Expand Down
2 changes: 1 addition & 1 deletion ci/travis-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
set -ex

MANYLINUX_PYPATHS="cp27-cp27m cp27-cp27mu cp34-cp34m cp35-cp35m cp36-cp36m cp37-cp37m"
CURRENT_VERSION=zstandard-0.10.1
CURRENT_VERSION=zstandard-0.10.2
MANYLINUX_URL=https://s3-us-west-2.amazonaws.com/python-zstandard/travis/${TRAVIS_BUILD_NUMBER}/manylinuxwheels/dist

function make_manylinux_wheels {
Expand Down
2 changes: 1 addition & 1 deletion tests/test_module_attributes.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class TestModuleAttributes(unittest.TestCase):
def test_version(self):
self.assertEqual(zstd.ZSTD_VERSION, (1, 3, 6))

self.assertEqual(zstd.__version__, '0.10.1')
self.assertEqual(zstd.__version__, '0.10.2')

def test_constants(self):
self.assertEqual(zstd.MAX_COMPRESSION_LEVEL, 22)
Expand Down
2 changes: 1 addition & 1 deletion zstandard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@
'cext, or cffi' % _module_policy)

# Keep this in sync with python-zstandard.h.
__version__ = '0.10.1'
__version__ = '0.10.2'

0 comments on commit af60771

Please sign in to comment.