Skip to content

Commit

Permalink
release: update version and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
domire8 committed Sep 20, 2023
1 parent fff6b1b commit 71cf431
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

Release Versions:

- [2.0.1](#201)
- [2.0.0](#200)
- [1.4.1](#141)
- [1.4.0](#140)
Expand All @@ -12,6 +13,13 @@ Release Versions:
- [0.2.0](#020)
- [0.1.0](#010)

## 2.0.1

Version 2.0.1 contains a hotfix that enables socket communiction with any serialized message in Python, which was not
possible before due to an error in the bindings.

- fix(python): avoid removal of null characters in bindings (#66)

## 2.0.0

Version 2.0.0 is a major update to this repository and contains breaking changes.
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from pybind11.setup_helpers import ParallelCompile, Pybind11Extension, build_ext, naive_recompile
from setuptools import setup

__version__ = "1.0.0"
__version__ = "1.0.1"

try:
status = pkgconfig.installed('communication_interfaces', f'>= {__version__}')
Expand Down
2 changes: 1 addition & 1 deletion source/communication_interfaces/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.15)

set(COMMUNICATION_INTERFACES_VERSION 1.0.0)
set(COMMUNICATION_INTERFACES_VERSION 1.0.1)
project(communication_interfaces VERSION ${COMMUNICATION_INTERFACES_VERSION})

option(BUILD_TESTING "Build tests." OFF)
Expand Down

0 comments on commit 71cf431

Please sign in to comment.