Skip to content
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
2 changes: 1 addition & 1 deletion source/uwlab_rl/config/extension.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

# Note: Semantic Versioning is used: https://semver.org/
version = "0.1.3"
version = "0.1.4"

# Description
title = "UW Lab RL"
Expand Down
10 changes: 10 additions & 0 deletions source/uwlab_rl/docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Changelog
---------

0.1.4 (2026-09-14)
~~~~~~~~~~~~~~~~~~

Fixed
^^^^^

* Pinned the RSL-RL dependency to commit ``e7cd3c77bdb3c94753612f208c725e1add38a655``
so new installations do not pick up incompatible changes from its moving main branch.


0.1.3 (2025-11-09)
~~~~~~~~~~~~~~~~~~

Expand Down
3 changes: 2 additions & 1 deletion source/uwlab_rl/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
# Extra dependencies for RL agents
EXTRAS_REQUIRE = {
"rsl-rl": [
"rsl-rl-lib @ git+https://github.com/UW-Lab/rsl_rl.git@main",
# Update this pin alongside compatible UWLab changes.
"rsl-rl-lib @ git+https://github.com/UW-Lab/rsl_rl.git@e7cd3c77bdb3c94753612f208c725e1add38a655",
],
}

Expand Down
Loading