Skip to content

Commit 4de99ab

Browse files
authored
doc: point users to our CHANGELOG at the top of the release note (#2582)
This is so that we can start pointing users at a more helpful changelog that has announcements about deprecations, etc.
1 parent ea716fe commit 4de99ab

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/create_archive_and_notes.sh

+10-4
Original file line numberDiff line numberDiff line change
@@ -37,22 +37,28 @@ cat > release_notes.txt << EOF
3737
3838
For more detailed setup instructions, see https://rules-python.readthedocs.io/en/latest/getting-started.html
3939
40+
For the user-facing changelog see [here](https://rules-python.readthedocs.io/en/latest/changelog.html#v${TAG//./-})
41+
4042
## Using Bzlmod
4143
4244
Add to your \`MODULE.bazel\` file:
4345
4446
\`\`\`starlark
4547
bazel_dep(name = "rules_python", version = "${TAG}")
4648
47-
pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip")
49+
python = use_extension("@rules_python//python/extensions:python.bzl", "python")
50+
python.toolchain(
51+
python_version = "3.13",
52+
)
4853
54+
pip = use_extension("@rules_python//python/extensions:pip.bzl", "pip")
4955
pip.parse(
50-
hub_name = "pip",
51-
python_version = "3.11",
56+
hub_name = "pypi",
57+
python_version = "3.13",
5258
requirements_lock = "//:requirements_lock.txt",
5359
)
5460
55-
use_repo(pip, "pip")
61+
use_repo(pip, "pypi")
5662
\`\`\`
5763
5864
## Using WORKSPACE

0 commit comments

Comments
 (0)