Skip to content

Commit a30f24b

Browse files
author
github-actions
committed
1.5.0
Automatically generated by python-semantic-release
1 parent c6360b1 commit a30f24b

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.5.0 (2023-08-06)
6+
7+
### Feature
8+
9+
* Encode tensors in Redis ([`7cfc8cf`](https://github.com/tmigimatsu/ctrl-utils/commit/7cfc8cf71a3ca02efe91f6f5259de53c92ae5245))
10+
511
## v1.4.4 (2023-06-27)
612

713
### Fix

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.4
15+
VERSION 1.5.0
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.4"
7+
__version__ = "1.5.0"

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.4"
7+
version = "1.5.0"
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.4"
12+
__version__ = "1.5.0"
1313

1414

1515
class CMakeExtension(setuptools.Extension):

0 commit comments

Comments
 (0)