Skip to content

Commit

Permalink
Bump version and update release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-emery committed Jan 6, 2025
1 parent 2f80e26 commit c9b09ca
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 5 deletions.
6 changes: 5 additions & 1 deletion rlgym/api/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

__version__ = '2.0.0-rc'
__version__ = '2.0.0'


def get_current_release_notes():
Expand All @@ -15,6 +15,10 @@ def print_current_release_notes():


release_notes = {
'2.0.0':
"""
- Updated docstrings
""",
'2.0.0-rc':
"""
- Added SharedInfoProvider API
Expand Down
19 changes: 18 additions & 1 deletion rlgym/rocket_league/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

__version__ = '2.0.0-rc'
__version__ = '2.0.0'


def get_current_release_notes():
Expand All @@ -15,6 +15,23 @@ def print_current_release_notes():


release_notes = {
'2.0.0':
"""
- Renamed timeout parameter of default DoneConditions to timeout_seconds
- Added Car.wheels_with_contact
- Added Car.has_flip
- Changed Car.boost_amount range from [0, 1] to [0, 100]
- Added boost_coef to DefaultObs
- Added rlbot_delay parameter to RocketSimEngine which emulates RLBot's 1-tick action delay, default is True!!
- rlbot_delay can be updated during runtime via RocketSimEngine.config
- Updated RocketSimEngine to use new flip_rel_torque
- Updated RocketSimEngine to set is_demoed and is_flipping as well
- Updated RocketSimEngine's goal threshold (still only supports Soccar)
- Updated docstrings
- Updated KickoffMutator's ball resting position to the correct value
- Renamed some stuff in rlgym.rocket_league.math [Rolv]
- Removed rocket-league game package
""",
'2.0.0-rc':
"""
- Updated RocketSim and RLViser dependencies [Virx]
Expand Down
24 changes: 23 additions & 1 deletion rlgym/version/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

__version__ = '2.0.0-rc'
__version__ = '2.0.0'


# TODO consume subpackages instead?
Expand All @@ -16,6 +16,28 @@ def print_current_release_notes():


release_notes = {
'2.0.0':
"""
- Added rl-rlviser install recipe
- Removed rl-game install recipe
API changes:
- Updated docstrings
Rocket League changes:
- Renamed timeout parameter of default DoneConditions to timeout_seconds
- Added Car.wheels_with_contact
- Added Car.has_flip
- Changed Car.boost_amount range from [0, 1] to [0, 100]
- Added boost_coef to DefaultObs
- Added rlbot_delay parameter to RocketSimEngine which emulates RLBot's 1-tick action delay, default is True!!
- rlbot_delay can be updated during runtime via RocketSimEngine.config
- Updated RocketSimEngine to use new flip_rel_torque
- Updated RocketSimEngine to set is_demoed and is_flipping as well
- Updated RocketSimEngine's goal threshold (still only supports Soccar)
- Updated docstrings
- Updated KickoffMutator's ball resting position to the correct value
- Renamed some stuff in rlgym.rocket_league.math [Rolv]
- Removed rocket-league game package
""",
'2.0.0-rc':
"""
API changes:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
config = json.loads(setup_json.read())

base_config = dict(
author='Lucas Emery and Matthew Allen',
author='Lucas Emery, Matthew Allen and Rolv-Arild Braaten',
author_email='[email protected]',
url='https://rlgym.org',
project_urls={
Expand All @@ -17,7 +17,7 @@
license_file='LICENSE',
keywords=['rocket-league', 'gym', 'reinforcement-learning', 'rlgym'],
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
"Operating System :: OS Independent",
Expand Down

0 comments on commit c9b09ca

Please sign in to comment.