From 173f4ec79e0af7b028f3ef6cad5f3a2443ff2c0f Mon Sep 17 00:00:00 2001 From: Levi Harrison Date: Wed, 8 Sep 2021 19:54:03 -0400 Subject: [PATCH 1/2] Fix wording in `CONTRIBUTING.md` Signed-off-by: Levi Harrison --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0a073926b8..a8dfb0ff6a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -52,7 +52,7 @@ All our issues are regularly tagged so that you can also filter down the issues * Commits should be as small as possible, while ensuring that each commit is correct independently (i.e., each commit should compile and pass tests). -* If your patch is not getting reviewed or you need a specific person to review it, you can @-reply a reviewer asking for a review in the pull request or a comment, or you can ask for a review on IRC channel [#prometheus](https://web.libera.chat/?channels=#prometheus) on irc.libera.chat (for the easiest start, [join via Riot](https://riot.im/app/#/room/#prometheus:matrix.org)). +* If your patch is not getting reviewed or you need a specific person to review it, you can @-reply a reviewer asking for a review in the pull request or a comment, or you can ask for a review on IRC channel [#prometheus](https://web.libera.chat/?channels=#prometheus) on irc.libera.chat (for the easiest start, [join via Element](https://app.element.io/#/room/#prometheus:matrix.org)). * Add tests relevant to the fixed bug or new feature. @@ -64,10 +64,10 @@ To add or update a new dependency, use the `go get` command: ```bash # Pick the latest tagged release. -go get example.com/some/module/pkg +go install example.com/some/module/pkg@latest # Pick a specific version. -go get example.com/some/module/pkg@vX.Y.Z +go install example.com/some/module/pkg@vX.Y.Z ``` Tidy up the `go.mod` and `go.sum` files: From f3f69ec01671fb6ebb454535e83cb51fdcadc63f Mon Sep 17 00:00:00 2001 From: Levi Harrison Date: Thu, 9 Sep 2021 08:13:57 -0400 Subject: [PATCH 2/2] Change channel to `prometheus-dev` Signed-off-by: Levi Harrison --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a8dfb0ff6a..1b61c5de0c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -52,7 +52,7 @@ All our issues are regularly tagged so that you can also filter down the issues * Commits should be as small as possible, while ensuring that each commit is correct independently (i.e., each commit should compile and pass tests). -* If your patch is not getting reviewed or you need a specific person to review it, you can @-reply a reviewer asking for a review in the pull request or a comment, or you can ask for a review on IRC channel [#prometheus](https://web.libera.chat/?channels=#prometheus) on irc.libera.chat (for the easiest start, [join via Element](https://app.element.io/#/room/#prometheus:matrix.org)). +* If your patch is not getting reviewed or you need a specific person to review it, you can @-reply a reviewer asking for a review in the pull request or a comment, or you can ask for a review on the IRC channel [#prometheus-dev](https://web.libera.chat/?channels=#prometheus-dev) on irc.libera.chat (for the easiest start, [join via Element](https://app.element.io/#/room/#prometheus-dev:matrix.org)). * Add tests relevant to the fixed bug or new feature.