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