File tree Expand file tree Collapse file tree 5 files changed +10
-4
lines changed Expand file tree Collapse file tree 5 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
<!-- next-version-placeholder-->
4
4
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
+
5
11
## v1.4.3 (2023-04-26)
6
12
### Fix
7
13
* Move to pyproject.toml ([ ` bebc47b ` ] ( https://github.com/tmigimatsu/ctrl-utils/commit/bebc47b8f2451d3dcd9c62d4aa077a5018754267 ) )
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ cmake_minimum_required(VERSION 3.11)
12
12
13
13
# Define project
14
14
project (ctrl_utils
15
- VERSION 1.4.3
15
+ VERSION 1.4.4
16
16
DESCRIPTION "Utility library for robot control"
17
17
LANGUAGES CXX
18
18
)
Original file line number Diff line number Diff line change 4
4
from .ctrlutils import *
5
5
from . import eigen
6
6
7
- __version__ = "1.4.3 "
7
+ __version__ = "1.4.4 "
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
5
5
[project ]
6
6
name = " ctrlutils"
7
- version = " 1.4.3 "
7
+ version = " 1.4.4 "
8
8
authors = [
9
9
{
name =
" Toki Migimatsu" ,
email =
" [email protected] " }
10
10
]
Original file line number Diff line number Diff line change 9
9
from setuptools .extern .packaging import version # type: ignore
10
10
11
11
12
- __version__ = "1.4.3 "
12
+ __version__ = "1.4.4 "
13
13
14
14
15
15
class CMakeExtension (setuptools .Extension ):
You can’t perform that action at this time.
0 commit comments