Skip to content

Commit

Permalink
release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
atimin committed Jul 31, 2023
1 parent 7e13994 commit 5f569a3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## 0.2.0 - 2023-07-31

### Changed

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.1.0 LANGUAGES CXX)
project(drift_bytes VERSION 0.2.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.1.0"
version = "0.2.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 = 1
MINOR_VERSION = 2
PATCH_VERSION = 0

PACKAGE_NAME = "drift-bytes"
Expand Down

0 comments on commit 5f569a3

Please sign in to comment.