Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 2.0.0 #106

Merged
merged 1 commit into from
Jul 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading