Skip to content

Commit

Permalink
release 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
atimin committed Jun 28, 2023
1 parent d7ced35 commit 40dca4e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Unreleased

## 0.7.1 - 2023-06-28

### Fixed:

* Build Python 3.11 wheels

## 0.7.0 - 2023-06-28

### Changed
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.24")
cmake_policy(SET CMP0135 NEW)
endif()

project(wavelet_buffer VERSION 0.7.0)
project(wavelet_buffer VERSION 0.7.1)

option(WB_BUILD_TESTS "Enable unit tests" OFF)
option(WB_BUILD_EXAMPLES "Enable examples" 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 = "wavelet_buffer"
version = "0.7.0"
version = "0.7.1"
license = "MPL-2.0"
author = "PANDA GmbH"
description = "An universal C++ compression library based on wavelet transformation"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

MAJOR_VERSION = 0
MINOR_VERSION = 7
PATCH_VERSION = 0
PATCH_VERSION = 1

PACKAGE_NAME = "wavelet-buffer"

Expand Down

0 comments on commit 40dca4e

Please sign in to comment.