Skip to content

Commit 3a28850

Browse files
author
github-actions
committed
1.5.1
Automatically generated by python-semantic-release
1 parent 23c92ff commit 3a28850

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.1 (2023-08-14)
6+
7+
### Fix
8+
9+
* Pack bool tensors ([`23c92ff`](https://github.com/tmigimatsu/ctrl-utils/commit/23c92ff3c838e9058e099a01a0888bc1fef2854b))
10+
511
## v1.5.0 (2023-08-06)
612

713
### Feature

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.5.0
15+
VERSION 1.5.1
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.5.0"
7+
__version__ = "1.5.1"

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

1414

1515
class CMakeExtension(setuptools.Extension):

0 commit comments

Comments
 (0)