summaryrefslogtreecommitdiffhomepage
path: root/mullvad-update/meta/src/github.rs
diff options
context:
space:
mode:
Diffstat (limited to 'mullvad-update/meta/src/github.rs')
-rw-r--r--mullvad-update/meta/src/github.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/mullvad-update/meta/src/github.rs b/mullvad-update/meta/src/github.rs
index 136ffe21a8..c2e6b99bb0 100644
--- a/mullvad-update/meta/src/github.rs
+++ b/mullvad-update/meta/src/github.rs
@@ -1,6 +1,8 @@
+//! Tools for the GitHub repository.
+
use anyhow::Context;
-// Obtain changes.txt for a given version/tag from the GitHub repository
+/// Obtain changes.txt for a given version/tag from the GitHub repository
pub async fn fetch_changes_text(version: &mullvad_version::Version) -> anyhow::Result<String> {
let github_changes_url = format!("https://raw.githubusercontent.com/mullvad/mullvadvpn-app/refs/tags/{version}/desktop/packages/mullvad-vpn/changes.txt");
let changes = reqwest::get(github_changes_url)