Skip to content

Commit 9a20fc2

Browse files
authored
chore: update version markers for 1.8 release (#3472)
Update version markers for the 1.8 release. Work towards #3466
1 parent 7f1fc2a commit 9a20fc2

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

CHANGELOG.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,18 +48,18 @@ END_UNRELEASED_TEMPLATE
4848
-->
4949

5050

51-
{#v0-0-0}
52-
## Unreleased
51+
{#v1-8-0}
52+
## [1.8.0] - 2025-12-19
5353

54-
[0.0.0]: https://github.com/bazel-contrib/rules_python/releases/tag/0.0.0
54+
[1.8.0]: https://github.com/bazel-contrib/rules_python/releases/tag/1.8.0
5555

56-
{#v0-0-0-known-issues}
56+
{#v1-8-0-known-issues}
5757
### Known Issues
5858
* (gazelle) Windows support for the Gazelle plugin may be broken. See
5959
[#3416](https://github.com/bazel-contrib/rules_python/issues/3416) for
6060
details and possible workarounds.
6161

62-
{#v0-0-0-removed}
62+
{#v1-8-0-removed}
6363
### Removed
6464
* (toolchain) Remove all of the python 3.8 toolchain support out of the box. Users need
6565
to pass the `TOOL_VERSIONS` that include 3.8 toolchains or use the `bzlmod` APIs to add
@@ -74,7 +74,7 @@ END_UNRELEASED_TEMPLATE
7474
the toolchains in the repository phase, ensure that you pass `-B` to the python interpreter.
7575
([#2016](https://github.com/bazel-contrib/rules_python/issues/2016))
7676

77-
{#v0-0-0-changed}
77+
{#v1-8-0-changed}
7878
### Changed
7979
* (toolchains) Use toolchains from the [20251031] release.
8080
* (gazelle) Internally split modules mapping generation to be per-wheel for concurrency and caching.
@@ -88,7 +88,7 @@ END_UNRELEASED_TEMPLATE
8888
* (gazelle deps) rules_go bumped from 0.55.1 to 0.59.0
8989
* (gazelle deps) gazelle bumped from 0.36.0 to 0.47.0
9090

91-
{#v0-0-0-fixed}
91+
{#v1-8-0-fixed}
9292
### Fixed
9393
* (gazelle) Remove {obj}`py_binary` targets with invalid `srcs`. This includes files
9494
that are not generated or regular files.
@@ -109,7 +109,7 @@ END_UNRELEASED_TEMPLATE
109109
* (core rules) For the system_python bootstrap, the runfiles root is added to
110110
sys.path.
111111

112-
{#v0-0-0-added}
112+
{#v1-8-0-added}
113113
### Added
114114
* (toolchains) `3.9.25` Python toolchain from [20251031] release.
115115
* (toolchains) `3.13.10`, `3.14.1` Python toolchain from [20251202] release.
@@ -2065,4 +2065,4 @@ Breaking changes:
20652065
* (pip) Create all_data_requirements alias
20662066
* Expose Python C headers through the toolchain.
20672067

2068-
[0.24.0]: https://github.com/bazel-contrib/rules_python/releases/tag/0.24.0
2068+
[0.24.0]: https://github.com/bazel-contrib/rules_python/releases/tag/0.24.0

python/private/py_library.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ When {obj}`--venv_site_packages=yes` is set, this helps inform which directories
111111
treated as namespace packages and expect files from other targets to be contributed.
112112
This allows optimizing the generation of symlinks to be cheaper at analysis time.
113113
114-
:::{versionadded} VERSION_NEXT_FEATURE
114+
:::{versionadded} 1.8.0
115115
:::
116116
""",
117117
),

python/private/pypi/extension.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -687,7 +687,7 @@ a string `"{os}_{arch}"` as the value here. You could also use `"{os}_{arch}_fre
687687
:::{include} /_includes/experimental_api.md
688688
:::
689689
690-
:::{versionadded} VERSION_NEXT_FEATURE
690+
:::{versionadded} 1.8.0
691691
:::
692692
""",
693693
),

python/private/pypi/hub_builder.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def _pip_parse(self, module_ctx, pip_attr):
142142
python_version = full_python_version,
143143
config = self._config,
144144
# TODO @aignas 2025-12-09: flip or part to default to 'os_arch' after
145-
# VERSION_NEXT_FEATURE is released and set the default of the `target_platforms` attribute
145+
# 1.8.0 is released and set the default of the `target_platforms` attribute
146146
# to `{os}_{arch}`.
147147
target_platforms = pip_attr.target_platforms or ([] if default_cross_setup else ["{os}_{arch}"]),
148148
)

python/private/python.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1065,7 +1065,7 @@ Then the python interpreter will be available as `my_python_name`.
10651065
"ignore_root_user_error": attr.bool(
10661066
default = True,
10671067
doc = """\
1068-
:::{versionchanged} VERSION_NEXT_FEATURE
1068+
:::{versionchanged} 1.8.0
10691069
Noop, will be removed in the next major release.
10701070
:::
10711071
""",

0 commit comments

Comments
 (0)