From ba98edee28f95e71c7871ed9ae2c013f6a57ebb2 Mon Sep 17 00:00:00 2001 From: Dima Tisnek Date: Tue, 4 Jun 2024 11:00:11 +0900 Subject: [PATCH] docs: fix links in HACKING.md (#1236) Fix the links to [version.py](ops/version.py) so that they render correctly. --- HACKING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/HACKING.md b/HACKING.md index 468aaab24..74a8a6000 100644 --- a/HACKING.md +++ b/HACKING.md @@ -291,7 +291,7 @@ To make a release of the ops library, do the following: 7. Create a new branch, and copy this text to the [CHANGES.md](CHANGES.md) file, stripping out links, who did each commit, the new contributor list, and the link to the full changelog. -8. Change [version.py][ops/version.py]'s `version` to the +8. Change [version.py](ops/version.py)'s `version` to the [appropriate string](https://semver.org/). 9. Check if there's a `chore: update charm pins` auto-generated PR in the queue. If it looks good, merge it and check that tests still pass. If needed, you can re-trigger the @@ -315,6 +315,6 @@ You can troubleshoot errors on the [Actions Tab](https://github.com/canonical/op 13. Announce the release on [Discourse](https://discourse.charmhub.io/c/framework/42) and [Matrix](https://matrix.to/#/#charmhub-charmdev:ubuntu.com) -14. Open a PR to change [version.py][ops/version.py]'s `version` to the expected - next version, with "+dev" appended (for example, if 3.14.1 is the next expected version, use +14. Open a PR to change [version.py](ops/version.py)'s `version` to the expected + next version, with ".dev0" appended (for example, if 3.14.1 is the next expected version, use `'3.14.1.dev0'`).