Skip to content

Commit e2455c7

Browse files
committedJul 30, 2024
Bump version to 2.0.0
Major increase as removing the copy of the robot_properties_fingers files can potentially be a breaking change.
1 parent f4a8c89 commit e2455c7

File tree

5 files changed

+18
-7
lines changed

5 files changed

+18
-7
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ __pycache__
77
docs/_build
88
build/
99
dist/
10+
venv/

‎CHANGELOG ‎CHANGELOG.md

+13-3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010

1111
## [Unreleased]
12+
13+
## [2.0.0] - 2024-07-30
1214
### Added
1315
- Add py.typed marker for mypy
1416
- screenshot_mode.py to run simulation without visualisations (for nicer screenshots).
@@ -29,13 +31,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2931
installation types (colcon and pure Python).
3032

3133

32-
## 1.4.1 - 2022-06-24
34+
## [1.4.1] - 2022-06-24
3335

3436
- Switch from setup.py to setup.cfg
3537
- Set dtypes of gym spaces to np.float64
3638

3739

38-
## 1.4.0 - 2022-06-23
40+
## [1.4.0] - 2022-06-23
3941

4042
- Nicer rendering of the boundary (#68)
4143
- Change initial pose of camera in PyBullet GUI (#68)
@@ -46,6 +48,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4648
- Optionally compute tip velocities in forward kinematics (#85)
4749
- Cleanup the code and add more unit tests
4850

49-
## 1.3.0 - 2021-08-04
51+
## [1.3.0] - 2021-08-04
5052

5153
There is no changelog for this or earlier versions.
54+
55+
---
56+
57+
[Unreleased]: https://github.com/open-dynamic-robot-initiative/trifinger_simluation/compare/v2.0.0...HEAD
58+
[2.0.0]: https://github.com/open-dynamic-robot-initiative/trifinger_simluation/compare/v1.4.1...v2.0.0
59+
[1.4.1]: https://github.com/open-dynamic-robot-initiative/trifinger_simluation/compare/v1.4.0...v1.4.1
60+
[1.4.0]: https://github.com/open-dynamic-robot-initiative/trifinger_simluation/compare/v1.3.0...v1.4.0
61+
[1.3.0]: https://github.com/open-dynamic-robot-initiative/trifinger_simluation/releases/tag/v1.3.0

‎docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@
6464
# built documents.
6565
#
6666
# The short X.Y version.
67-
version = "1.4.1"
67+
version = "2.0"
6868
# The full version, including alpha/beta/rc tags.
69-
release = "1.4.1"
69+
release = "2.0.0"
7070

7171
# The language for content autogenerated by Sphinx. Refer to documentation
7272
# for a list of supported languages.

‎package.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0"?>
22
<package format="3">
33
<name>trifinger_simulation</name>
4-
<version>1.4.1</version>
4+
<version>2.0.0</version>
55
<description>
66
TriFinger Robot Simulation
77
</description>

‎trifinger_simulation/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.4.1"
1+
__version__ = "2.0.0"
22

33
import pathlib
44

0 commit comments

Comments
 (0)