Skip to content

Commit d976228

Browse files
authored
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 #2683
1 parent 8396af0 commit d976228

12 files changed

+39
-16
lines changed

Diff for: CHANGELOG.md

+26-3
Original file line numberDiff line numberDiff line change
@@ -45,21 +45,44 @@ Unreleased changes template.
4545
* Nothing removed.
4646
-->
4747

48+
4849
{#v0-0-0}
4950
## Unreleased
5051

5152
[0.0.0]: https://github.com/bazelbuild/rules_python/releases/tag/0.0.0
5253

5354
{#v0-0-0-changed}
5455
### Changed
56+
* Nothing changed.
57+
58+
{#v0-0-0-fixed}
59+
### Fixed
60+
* Nothing fixed.
61+
62+
{#v0-0-0-added}
63+
### Added
64+
* Nothing added.
65+
66+
{#v0-0-0-removed}
67+
### Removed
68+
* Nothing removed.
69+
70+
71+
{#v1-3-0}
72+
## Unreleased
73+
74+
[1.3.0]: https://github.com/bazelbuild/rules_python/releases/tag/1.3.0
75+
76+
{#v1-3-0-changed}
77+
### Changed
5578
* (deps) platforms 0.0.4 -> 0.0.11
5679
* (py_wheel) Package `py_library.pyi_srcs` (`.pyi` files) in the wheel.
5780
* (py_package) Package `py_library.pyi_srcs` (`.pyi` files) in `py_package`.
5881
* (gazelle) The generated manifest file (default: `gazelle_python.yaml`) will now include the
5982
YAML document start `---` line. Implemented in
6083
[#2656](https://github.com/bazelbuild/rules_python/pull/2656).
6184

62-
{#v0-0-0-fixed}
85+
{#v1-3-0-fixed}
6386
### Fixed
6487
* (pypi) The `ppc64le` is now pointing to the right target in the `platforms` package.
6588
* (gazelle) No longer incorrectly merge `py_binary` targets during partial updates in
@@ -76,7 +99,7 @@ Unreleased changes template.
7699
creating `.pyc` files.
77100
* (deps) doublestar 4.7.1 (required for recent Gazelle versions)
78101

79-
{#v0-0-0-added}
102+
{#v1-3-0-added}
80103
### Added
81104
* {obj}`//python/bin:python`: convenience target for directly running an
82105
interpreter. {obj}`--//python/bin:python_src` can be used to specify a
@@ -102,7 +125,7 @@ Unreleased changes template.
102125
* (rules) Added {obj}`main_module` attribute to `py_binary` and `py_test`,
103126
which allows specifying a module name to run (i.e. `python -m <module>`).
104127

105-
{#v0-0-0-removed}
128+
{#v1-3-0-removed}
106129
### Removed
107130
* Nothing removed.
108131

Diff for: docs/api/rules_python/python/bin/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ bazel run @rules_python//python/bin:python \
3030
The {flag}`--python_src` flag for using the intepreter a binary/test uses.
3131
::::
3232

33-
::::{versionadded} VERSION_NEXT_FEATURE
33+
::::{versionadded} 1.3.0
3434
::::
3535
:::
3636

Diff for: docs/environment-variables.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ python /path/to/debugger.py --port 12345 --file /path/to/file.py
2424
The {bzl:obj}`interpreter_args` attribute.
2525
:::
2626

27-
:::{versionadded} VERSION_NEXT_FEATURE
27+
:::{versionadded} 1.3.0
2828

2929
::::
3030

Diff for: python/api/executables.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
{#python-apis-executables-bzl}
1717
Loading-phase APIs specific to executables (binaries/tests).
1818
19-
:::{versionadded} VERSION_NEXT_FEATURE
19+
:::{versionadded} 1.3.0
2020
:::
2121
"""
2222

Diff for: python/api/libraries.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
{#python-apis-libraries-bzl}
1717
Loading-phase APIs specific to libraries.
1818
19-
:::{versionadded} VERSION_NEXT_FEATURE
19+
:::{versionadded} 1.3.0
2020
:::
2121
"""
2222

Diff for: python/private/attr_builders.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
"""Builders for creating attributes et al.
1616
17-
:::{versionadded} VERSION_NEXT_FEATURE
17+
:::{versionadded} 1.3.0
1818
:::
1919
"""
2020

Diff for: python/private/py_binary_rule.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def create_py_binary_rule_builder():
3434
:::{include} /_includes/volatile_api.md
3535
:::
3636
37-
:::{versionadded} VERSION_NEXT_FEATURE
37+
:::{versionadded} 1.3.0
3838
:::
3939
4040
Returns:

Diff for: python/private/py_executable.bzl

+3-3
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Only supported for {obj}`--bootstrap_impl=script`. Ignored otherwise.
102102
The {obj}`RULES_PYTHON_ADDITIONAL_INTERPRETER_ARGS` environment variable
103103
:::
104104
105-
:::{versionadded} VERSION_NEXT_FEATURE
105+
:::{versionadded} 1.3.0
106106
:::
107107
""",
108108
),
@@ -146,7 +146,7 @@ information about running modules as the main program.
146146
147147
This is mutually exclusive with {obj}`main`.
148148
149-
:::{versionadded} VERSION_NEXT_FEATURE
149+
:::{versionadded} 1.3.0
150150
:::
151151
""",
152152
),
@@ -1803,7 +1803,7 @@ def create_executable_rule_builder(implementation, **kwargs):
18031803
and the output is something that can be run directly (e.g. `bazel run`,
18041804
`exec(...)` etc)
18051805
1806-
:::{versionadded} VERSION_NEXT_FEATURE
1806+
:::{versionadded} 1.3.0
18071807
:::
18081808
18091809
Returns:

Diff for: python/private/py_library.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def create_py_library_rule_builder():
151151
:::{include} /_includes/volatile_api.md
152152
:::
153153
154-
:::{versionadded} VERSION_NEXT_FEATURE
154+
:::{versionadded} 1.3.0
155155
:::
156156
157157
Returns:

Diff for: python/private/py_test_rule.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def create_py_test_rule_builder():
3737
:::{include} /_includes/volatile_api.md
3838
:::
3939
40-
:::{versionadded} VERSION_NEXT_FEATURE
40+
:::{versionadded} 1.3.0
4141
:::
4242
4343
Returns:

Diff for: python/private/pypi/attrs.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ ATTRS = {
2020
doc = """
2121
If true, add the lib dir of the bundled interpreter to the library search path via `LDFLAGS`.
2222
23-
:::{versionadded} VERSION_NEXT_FEATURE
23+
:::{versionadded} 1.3.0
2424
:::
2525
""",
2626
),

Diff for: python/private/rule_builders.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def create_custom_foo_binary():
9292
custom_foo_binary = create_custom_foo_binary()
9393
```
9494
95-
:::{versionadded} VERSION_NEXT_FEATURE
95+
:::{versionadded} 1.3.0
9696
:::
9797
"""
9898

0 commit comments

Comments
 (0)