Skip to content

Commit

Permalink
Merge pull request #106 from open-dynamic-robot-initiative/fkloss/rel…
Browse files Browse the repository at this point in the history
…ease2.0.0

Bump version to 2.0.0
  • Loading branch information
luator authored Jul 30, 2024
2 parents f4a8c89 + e2455c7 commit 6e9b504
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ __pycache__
docs/_build
build/
dist/
venv/
16 changes: 13 additions & 3 deletions CHANGELOG → CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0


## [Unreleased]

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


## 1.4.1 - 2022-06-24
## [1.4.1] - 2022-06-24

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


## 1.4.0 - 2022-06-23
## [1.4.0] - 2022-06-23

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

## 1.3.0 - 2021-08-04
## [1.3.0] - 2021-08-04

There is no changelog for this or earlier versions.

---

[Unreleased]: https://github.com/open-dynamic-robot-initiative/trifinger_simluation/compare/v2.0.0...HEAD
[2.0.0]: https://github.com/open-dynamic-robot-initiative/trifinger_simluation/compare/v1.4.1...v2.0.0
[1.4.1]: https://github.com/open-dynamic-robot-initiative/trifinger_simluation/compare/v1.4.0...v1.4.1
[1.4.0]: https://github.com/open-dynamic-robot-initiative/trifinger_simluation/compare/v1.3.0...v1.4.0
[1.3.0]: https://github.com/open-dynamic-robot-initiative/trifinger_simluation/releases/tag/v1.3.0
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@
# built documents.
#
# The short X.Y version.
version = "1.4.1"
version = "2.0"
# The full version, including alpha/beta/rc tags.
release = "1.4.1"
release = "2.0.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="3">
<name>trifinger_simulation</name>
<version>1.4.1</version>
<version>2.0.0</version>
<description>
TriFinger Robot Simulation
</description>
Expand Down
2 changes: 1 addition & 1 deletion trifinger_simulation/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.4.1"
__version__ = "2.0.0"

import pathlib

Expand Down

0 comments on commit 6e9b504

Please sign in to comment.