Skip to content

Commit c2c1874

Browse files
author
github-actions
committed
1.4.3
Automatically generated by python-semantic-release
1 parent 859d89a commit c2c1874

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

CHANGELOG.md

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

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

5+
## v1.4.3 (2023-04-26)
6+
### Fix
7+
* Move to pyproject.toml ([`bebc47b`](https://github.com/tmigimatsu/ctrl-utils/commit/bebc47b8f2451d3dcd9c62d4aa077a5018754267))
8+
59
## v1.4.2 (2023-04-26)
610
### Fix
711
* Update pybind11 version ([`0bb2e7c`](https://github.com/tmigimatsu/ctrl-utils/commit/0bb2e7c10cb9a4c125f2b4c638528ad4c8f85e2e))

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.2
15+
VERSION 1.4.3
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.2"
7+
__version__ = "1.4.3"

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

1414

1515
class CMakeExtension(setuptools.Extension):

0 commit comments

Comments
 (0)