From 5e35d56fb25f94c07d6608cc73e295fda02e1ef5 Mon Sep 17 00:00:00 2001 From: Xyphuz Date: Sat, 27 Jul 2024 19:28:22 +0800 Subject: [PATCH] chore: update version tag --- CMakeLists.txt | 2 +- pyproject.toml | 2 +- setup.py | 2 +- tests/test.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 142236f..688df2d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.10) -project(libstreamvbyte VERSION 0.3.7) +project(libstreamvbyte VERSION 0.3.8) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) diff --git a/pyproject.toml b/pyproject.toml index 8796ce1..9cb2bcb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "libstreamvbyte" -version = "0.3.7" +version = "0.3.8" description = "A C++ implementation of StreamVByte, with Python bindings." authors = ["HSING-HAN WU (Xyphuz) "] readme = "README.md" diff --git a/setup.py b/setup.py index 9d32bd1..36ce2c9 100644 --- a/setup.py +++ b/setup.py @@ -96,7 +96,7 @@ def build_extension(self, ext: CMakeExtension): setup( name='libstreamvbyte', - version='0.3.7', + version='0.3.8', description='A C++ implementation of StreamVByte, with Python bindings.', long_description=open('README.md').read(), author='HSING-HAN WU (Xyphuz)', diff --git a/tests/test.py b/tests/test.py index 48e0b44..8a78c27 100644 --- a/tests/test.py +++ b/tests/test.py @@ -54,4 +54,4 @@ def test_integrate(): def test_version(): - assert svb.__version__ == "0.3.7" + assert svb.__version__ == "0.3.8"