diff --git a/CHANGELOG.md b/CHANGELOG.md
index a368282..8a55197 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,12 +1,14 @@
 # Changelog
+
 All notable changes to this project will be documented in this file.
 
 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 
 ## [Unreleased]
-- Some basic functions added: `filter`, `bind`, `concat`, `distinct`, `mapi`, `skip`, `take`, ...
-- rxquery { ... } builder added
+
+- Added some basic functions: `filter/where`, `bind`, `concat`, `distinct`, `mapi`, `skip`, `take`, …
+- Added `rxquery { … }` builder
 
 ## [0.1.0] - 2024-11-18
 First pre-release
diff --git a/build/Changelog.fs b/build/Changelog.fs
index 3dd8cb4..3af14e9 100644
--- a/build/Changelog.fs
+++ b/build/Changelog.fs
@@ -27,7 +27,7 @@ let failOnEmptyChangelog (latestEntry : Changelog.ChangelogEntry) =
 let mkLinkReference (newVersion : SemVerInfo) (changelog : Changelog.Changelog) (gitHubRepoUrl : string) =
     if changelog.Entries |> List.isEmpty then
         // No actual changelog entries yet: link reference will just point to the Git tag
-        sprintf "[%s]: %s/releases/tag/%s" newVersion.AsString (gitHubRepoUrl.TrimEnd ('/')) (tagFromVersionNumber newVersion.AsString)
+        sprintf "[%s]: %s/releases/tag/%s" newVersion.AsString gitHubRepoUrl (tagFromVersionNumber newVersion.AsString)
     else
         let versionTuple version = (version.Major, version.Minor, version.Patch)
         // Changelog entries come already sorted, most-recent first, by the Changelog module
diff --git a/build/Properties/launchSettings.json b/build/Properties/launchSettings.json
index 9e60ce1..6bea328 100644
--- a/build/Properties/launchSettings.json
+++ b/build/Properties/launchSettings.json
@@ -15,6 +15,10 @@
     "BuildDocs": {
       "commandName": "Project",
       "commandLineArgs": "--target BuildDocs"
+    },
+    "UpdateChangelog": {
+      "commandName": "Project",
+      "commandLineArgs": "--target UpdateChangelog 0.2.0"
     }
   }
 }
diff --git a/build/build.fs b/build/build.fs
index 2509aae..396746e 100644
--- a/build/build.fs
+++ b/build/build.fs
@@ -65,9 +65,9 @@ let watchDocsDir = temp </> "watch-docs"
 let gitOwner = "fsprojects"
 let gitRepoName = "FSharp.Control.R3"
 
-let gitHubRepoUrl = $"https://github.com/%s{gitOwner}/%s{gitRepoName}/"
+let gitHubRepoUrl = $"https://github.com/%s{gitOwner}/%s{gitRepoName}"
 
-let documentationRootUrl = $"https://%s{gitOwner}.github.io/%s{gitRepoName}/"
+let documentationRootUrl = $"https://%s{gitOwner}.github.io/%s{gitRepoName}"
 
 let releaseBranch = "main"
 let readme = "README.md"