chore: update changelog and version markers for 1.3 release (#2683)
Updates the changelog and VERSION_NEXT_XXX markers to specify 1.3.0 for
the upcoming release.
Work towards https://github.com/bazel-contrib/rules_python/pull/2683
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7c6287d..4e5f102 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -45,6 +45,7 @@
* Nothing removed.
-->
+
{#v0-0-0}
## Unreleased
@@ -52,6 +53,28 @@
{#v0-0-0-changed}
### Changed
+* Nothing changed.
+
+{#v0-0-0-fixed}
+### Fixed
+* Nothing fixed.
+
+{#v0-0-0-added}
+### Added
+* Nothing added.
+
+{#v0-0-0-removed}
+### Removed
+* Nothing removed.
+
+
+{#v1-3-0}
+## Unreleased
+
+[1.3.0]: https://github.com/bazelbuild/rules_python/releases/tag/1.3.0
+
+{#v1-3-0-changed}
+### Changed
* (deps) platforms 0.0.4 -> 0.0.11
* (py_wheel) Package `py_library.pyi_srcs` (`.pyi` files) in the wheel.
* (py_package) Package `py_library.pyi_srcs` (`.pyi` files) in `py_package`.
@@ -59,7 +82,7 @@
YAML document start `---` line. Implemented in
[#2656](https://github.com/bazelbuild/rules_python/pull/2656).
-{#v0-0-0-fixed}
+{#v1-3-0-fixed}
### Fixed
* (pypi) The `ppc64le` is now pointing to the right target in the `platforms` package.
* (gazelle) No longer incorrectly merge `py_binary` targets during partial updates in
@@ -76,7 +99,7 @@
creating `.pyc` files.
* (deps) doublestar 4.7.1 (required for recent Gazelle versions)
-{#v0-0-0-added}
+{#v1-3-0-added}
### Added
* {obj}`//python/bin:python`: convenience target for directly running an
interpreter. {obj}`--//python/bin:python_src` can be used to specify a
@@ -102,7 +125,7 @@
* (rules) Added {obj}`main_module` attribute to `py_binary` and `py_test`,
which allows specifying a module name to run (i.e. `python -m <module>`).
-{#v0-0-0-removed}
+{#v1-3-0-removed}
### Removed
* Nothing removed.
diff --git a/docs/api/rules_python/python/bin/index.md b/docs/api/rules_python/python/bin/index.md
index ad6a4e7..8bea6b5 100644
--- a/docs/api/rules_python/python/bin/index.md
+++ b/docs/api/rules_python/python/bin/index.md
@@ -30,7 +30,7 @@
The {flag}`--python_src` flag for using the intepreter a binary/test uses.
::::
-::::{versionadded} VERSION_NEXT_FEATURE
+::::{versionadded} 1.3.0
::::
:::
diff --git a/docs/environment-variables.md b/docs/environment-variables.md
index c7c0181..d8735cb 100644
--- a/docs/environment-variables.md
+++ b/docs/environment-variables.md
@@ -24,7 +24,7 @@
The {bzl:obj}`interpreter_args` attribute.
:::
-:::{versionadded} VERSION_NEXT_FEATURE
+:::{versionadded} 1.3.0
::::
diff --git a/python/api/executables.bzl b/python/api/executables.bzl
index 4715c0f..99bb7cc 100644
--- a/python/api/executables.bzl
+++ b/python/api/executables.bzl
@@ -16,7 +16,7 @@
{#python-apis-executables-bzl}
Loading-phase APIs specific to executables (binaries/tests).
-:::{versionadded} VERSION_NEXT_FEATURE
+:::{versionadded} 1.3.0
:::
"""
diff --git a/python/api/libraries.bzl b/python/api/libraries.bzl
index c4ad598..0b470a9 100644
--- a/python/api/libraries.bzl
+++ b/python/api/libraries.bzl
@@ -16,7 +16,7 @@
{#python-apis-libraries-bzl}
Loading-phase APIs specific to libraries.
-:::{versionadded} VERSION_NEXT_FEATURE
+:::{versionadded} 1.3.0
:::
"""
diff --git a/python/private/attr_builders.bzl b/python/private/attr_builders.bzl
index efcbfa6..57fe476 100644
--- a/python/private/attr_builders.bzl
+++ b/python/private/attr_builders.bzl
@@ -14,7 +14,7 @@
"""Builders for creating attributes et al.
-:::{versionadded} VERSION_NEXT_FEATURE
+:::{versionadded} 1.3.0
:::
"""
diff --git a/python/private/py_binary_rule.bzl b/python/private/py_binary_rule.bzl
index 38e3a69..3df6bd8 100644
--- a/python/private/py_binary_rule.bzl
+++ b/python/private/py_binary_rule.bzl
@@ -34,7 +34,7 @@
:::{include} /_includes/volatile_api.md
:::
- :::{versionadded} VERSION_NEXT_FEATURE
+ :::{versionadded} 1.3.0
:::
Returns:
diff --git a/python/private/py_executable.bzl b/python/private/py_executable.bzl
index d0ac314..d54a3d7 100644
--- a/python/private/py_executable.bzl
+++ b/python/private/py_executable.bzl
@@ -102,7 +102,7 @@
The {obj}`RULES_PYTHON_ADDITIONAL_INTERPRETER_ARGS` environment variable
:::
-:::{versionadded} VERSION_NEXT_FEATURE
+:::{versionadded} 1.3.0
:::
""",
),
@@ -146,7 +146,7 @@
This is mutually exclusive with {obj}`main`.
-:::{versionadded} VERSION_NEXT_FEATURE
+:::{versionadded} 1.3.0
:::
""",
),
@@ -1803,7 +1803,7 @@
and the output is something that can be run directly (e.g. `bazel run`,
`exec(...)` etc)
- :::{versionadded} VERSION_NEXT_FEATURE
+ :::{versionadded} 1.3.0
:::
Returns:
diff --git a/python/private/py_library.bzl b/python/private/py_library.bzl
index 7b024a0..f6c7b12 100644
--- a/python/private/py_library.bzl
+++ b/python/private/py_library.bzl
@@ -151,7 +151,7 @@
:::{include} /_includes/volatile_api.md
:::
- :::{versionadded} VERSION_NEXT_FEATURE
+ :::{versionadded} 1.3.0
:::
Returns:
diff --git a/python/private/py_test_rule.bzl b/python/private/py_test_rule.bzl
index f21fdc7..bb35d69 100644
--- a/python/private/py_test_rule.bzl
+++ b/python/private/py_test_rule.bzl
@@ -37,7 +37,7 @@
:::{include} /_includes/volatile_api.md
:::
- :::{versionadded} VERSION_NEXT_FEATURE
+ :::{versionadded} 1.3.0
:::
Returns:
diff --git a/python/private/pypi/attrs.bzl b/python/private/pypi/attrs.bzl
index 6717e95..9d88c1e 100644
--- a/python/private/pypi/attrs.bzl
+++ b/python/private/pypi/attrs.bzl
@@ -20,7 +20,7 @@
doc = """
If true, add the lib dir of the bundled interpreter to the library search path via `LDFLAGS`.
-:::{versionadded} VERSION_NEXT_FEATURE
+:::{versionadded} 1.3.0
:::
""",
),
diff --git a/python/private/rule_builders.bzl b/python/private/rule_builders.bzl
index 4607285..9b7c031 100644
--- a/python/private/rule_builders.bzl
+++ b/python/private/rule_builders.bzl
@@ -92,7 +92,7 @@
custom_foo_binary = create_custom_foo_binary()
```
-:::{versionadded} VERSION_NEXT_FEATURE
+:::{versionadded} 1.3.0
:::
"""