diff --git a/CHANGELOG.md b/CHANGELOG.md index 71c2ce2b83..442cde3b6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,20 @@ that were not yet released. +## 0.40.0 + +Released on 2024-09-22. + +* Remove pip-tools support; use uv for all operations by @nazq in https://github.com/astral-sh/rye/pull/1226 +* Respect exclusions when generating hashes by @charliermarsh in https://github.com/astral-sh/rye/pull/1357 +* List all existing tool references on `rye toolchain remove` by @soof-golan in https://github.com/astral-sh/rye/pull/1346 +* Update bundled Ruff version to v0.6.3 by @charliermarsh in https://github.com/astral-sh/rye/pull/1367 +* Fix a few regex inefficiencies by @InSyncWithFoo in https://github.com/astral-sh/rye/pull/1326 +* Never modify or delete the virtualenv in `rye list` by @bluss in https://github.com/astral-sh/rye/pull/1351 +* Use `inspect_err` over `map_err` by @charliermarsh in https://github.com/astral-sh/rye/pull/1385 +* Upgrade bundled Python releases by @github-actions in https://github.com/astral-sh/rye/pull/1379 +* Upgrade bundled uv version to v0.4.15 by @github-actions in https://github.com/astral-sh/rye/pull/1388 + ## 0.39.0 Released on 2024-08-20. diff --git a/Cargo.lock b/Cargo.lock index e1a1be7c98..1d828aa7ae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1819,7 +1819,7 @@ dependencies = [ [[package]] name = "rye" -version = "0.39.0" +version = "0.40.0" dependencies = [ "age", "anyhow", diff --git a/rye/Cargo.toml b/rye/Cargo.toml index 4721fda01d..9bdf275e2b 100644 --- a/rye/Cargo.toml +++ b/rye/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rye" -version = "0.39.0" +version = "0.40.0" edition = "2021" license = "MIT"