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.5.0 (2023-08-06)
6
+
7
+ ### Feature
8
+
9
+ * Encode tensors in Redis ([ ` 7cfc8cf ` ] ( https://github.com/tmigimatsu/ctrl-utils/commit/7cfc8cf71a3ca02efe91f6f5259de53c92ae5245 ) )
10
+
5
11
## v1.4.4 (2023-06-27)
6
12
7
13
### Fix
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.4
15
+ VERSION 1.5.0
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.4 "
7
+ __version__ = "1.5.0 "
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.4 "
7
+ version = " 1.5.0 "
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.4 "
12
+ __version__ = "1.5.0 "
13
13
14
14
15
15
class CMakeExtension (setuptools .Extension ):
You can’t perform that action at this time.
0 commit comments