diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f462e1..8a90b6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## 0.3.0 - 2023-10-20 + ### Added - `none` type, vector interface, [PR-4](https://github.com/panda-official/DriftBytes/pull/4) diff --git a/CMakeLists.txt b/CMakeLists.txt index b83aa69..5b0ad47 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.16) -project(drift_bytes VERSION 0.2.0 LANGUAGES CXX) +project(drift_bytes VERSION 0.3.0 LANGUAGES CXX) option(DB_BUILD_TESTS "Enable unit tests" OFF) diff --git a/conan/conanfile.py b/conan/conanfile.py index 2fc7c6e..013a798 100644 --- a/conan/conanfile.py +++ b/conan/conanfile.py @@ -10,7 +10,7 @@ class WaveletBufferConan(ConanFile): name = "drift_bytes" - version = "0.2.0" + version = "0.3.0" license = "MPL-2.0" author = "PANDA GmbH" description = "A serializer for typed data in the Drift infrastructure" diff --git a/setup.py b/setup.py index f22d31e..6f5504e 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ long_description = (this_directory / "python" / "README.md").read_text() MAJOR_VERSION = 0 -MINOR_VERSION = 2 +MINOR_VERSION = 3 PATCH_VERSION = 0 PACKAGE_NAME = "drift-bytes"