diff --git a/CHANGELOG.md b/CHANGELOG.md index f487194929..1c1e3b7d74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -47,16 +47,16 @@ BEGIN_UNRELEASED_TEMPLATE END_UNRELEASED_TEMPLATE --> -{#v0-0-0} -## Unreleased +{#v2-0-0} +## [2.0.0] - 2026-04-09 -[0.0.0]: https://github.com/bazel-contrib/rules_python/releases/tag/0.0.0 +[2.0.0]: https://github.com/bazel-contrib/rules_python/releases/tag/2.0.0 -{#v0-0-0-removed} +{#v2-0-0-removed} ### Removed * Nothing removed. -{#v0-0-0-changed} +{#v2-0-0-changed} ### Changed **Breaking** @@ -91,7 +91,7 @@ Other changes: * Windows no longer defaults to creating a zip file and extracting it; a symlink-based runfiles tree is created, as on unix-like platforms. -{#v0-0-0-fixed} +{#v2-0-0-fixed} ### Fixed * (toolchain) Also set Make variables for local toolchains. * (zipapp) Resolve issue passing through compression settings in @@ -123,7 +123,7 @@ Other changes: ``` Fixes [#3676](https://github.com/bazel-contrib/rules_python/issues/3676). -{#v0-0-0-added} +{#v2-0-0-added} ### Added * (pypi) Write SimpleAPI contents to the `MODULE.bazel.lock` file if using {obj}`experimental_index_url` which should speed up consecutive @@ -2313,4 +2313,4 @@ Breaking changes: * (pip) Create all_data_requirements alias * Expose Python C headers through the toolchain. -[0.24.0]: https://github.com/bazel-contrib/rules_python/releases/tag/0.24.0 +[0.24.0]: https://github.com/bazel-contrib/rules_python/releases/tag/0.24.0 \ No newline at end of file diff --git a/python/private/py_executable_info.bzl b/python/private/py_executable_info.bzl index 0c5931cecd..a076715bd0 100644 --- a/python/private/py_executable_info.bzl +++ b/python/private/py_executable_info.bzl @@ -83,7 +83,7 @@ implementation isn't being used. Runfiles that are specific to the interpreter within the venv. -:::{versionadded} VERSION_NEXT_FEATURE +:::{versionadded} 2.0.0 ::: """, "venv_interpreter_symlinks": """ @@ -95,7 +95,7 @@ Only used with Windows for files that would have used `declare_symlink()` to create relative symlinks. These may overlap with paths in runfiles; it's up to the consumer to determine how to handle such overlaps. -:::{versionadded} VERSION_NEXT_FEATURE +:::{versionadded} 2.0.0 ::: """, "venv_python_exe": """ diff --git a/python/private/py_runtime_info.bzl b/python/private/py_runtime_info.bzl index 8fdbd7bfe2..d94f469fc0 100644 --- a/python/private/py_runtime_info.bzl +++ b/python/private/py_runtime_info.bzl @@ -343,7 +343,7 @@ to meet two criteria: Files that should be added to the venv's `bin/` (or platform-specific equivalent) directory (using the file's basename). -:::{versionadded} VERSION_NEXT_FEATURE +:::{versionadded} 2.0.0 """, "zip_main_template": """ :type: File diff --git a/python/private/py_wheel.bzl b/python/private/py_wheel.bzl index e6a9925a15..6aea8a7ab1 100644 --- a/python/private/py_wheel.bzl +++ b/python/private/py_wheel.bzl @@ -206,7 +206,7 @@ filegroup(name = "files", srcs = [":file1.txt", ":file2.txt"]) Allowed paths: {prefixes} -:::{{versionchanged}} VERSION_NEXT_FEATURE +:::{{versionchanged}} 2.0.0 Values can end in slash (`/`) to indicate that all files of the target should be moved under that directory. :::