Skip to content

Commit

Permalink
release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
atimin committed Oct 20, 2023
1 parent 2814e0d commit 5659d53
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion conan/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 5659d53

Please sign in to comment.