Skip to content

Commit ff2a02b

Browse files
author
github-actions
committed
1.4.4
Automatically generated by python-semantic-release
1 parent 1843801 commit ff2a02b

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
<!--next-version-placeholder-->
44

5+
## v1.4.4 (2023-06-27)
6+
7+
### Fix
8+
9+
* Redis_cpp c++17 error ([`1843801`](https://github.com/tmigimatsu/ctrl-utils/commit/18438013a64c7942a242417b3d8727fadd3011c8))
10+
511
## v1.4.3 (2023-04-26)
612
### Fix
713
* Move to pyproject.toml ([`bebc47b`](https://github.com/tmigimatsu/ctrl-utils/commit/bebc47b8f2451d3dcd9c62d4aa077a5018754267))

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ cmake_minimum_required(VERSION 3.11)
1212

1313
# Define project
1414
project(ctrl_utils
15-
VERSION 1.4.3
15+
VERSION 1.4.4
1616
DESCRIPTION "Utility library for robot control"
1717
LANGUAGES CXX
1818
)

ctrlutils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
from .ctrlutils import *
55
from . import eigen
66

7-
__version__ = "1.4.3"
7+
__version__ = "1.4.4"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "ctrlutils"
7-
version = "1.4.3"
7+
version = "1.4.4"
88
authors = [
99
{name = "Toki Migimatsu", email = "[email protected]"}
1010
]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from setuptools.extern.packaging import version # type: ignore
1010

1111

12-
__version__ = "1.4.3"
12+
__version__ = "1.4.4"
1313

1414

1515
class CMakeExtension(setuptools.Extension):

0 commit comments

Comments
 (0)