Skip to content

Commit bb8a792

Browse files
committed
chore: prepare 0.2.0 changelog
1 parent 9ea92c6 commit bb8a792

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
# Changelog
2+
23
All notable changes to this project will be documented in this file.
34

45
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
56
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
67

78
## [Unreleased]
8-
- Some basic functions added: `filter`, `bind`, `concat`, `distinct`, `mapi`, `skip`, `take`, ...
9-
- rxquery { ... } builder added
9+
10+
- Added some basic functions: `filter/where`, `bind`, `concat`, `distinct`, `mapi`, `skip`, `take`, …
11+
- Added `rxquery { … }` builder
1012

1113
## [0.1.0] - 2024-11-18
1214
First pre-release

build/Changelog.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ let failOnEmptyChangelog (latestEntry : Changelog.ChangelogEntry) =
2727
let mkLinkReference (newVersion : SemVerInfo) (changelog : Changelog.Changelog) (gitHubRepoUrl : string) =
2828
if changelog.Entries |> List.isEmpty then
2929
// No actual changelog entries yet: link reference will just point to the Git tag
30-
sprintf "[%s]: %s/releases/tag/%s" newVersion.AsString (gitHubRepoUrl.TrimEnd ('/')) (tagFromVersionNumber newVersion.AsString)
30+
sprintf "[%s]: %s/releases/tag/%s" newVersion.AsString gitHubRepoUrl (tagFromVersionNumber newVersion.AsString)
3131
else
3232
let versionTuple version = (version.Major, version.Minor, version.Patch)
3333
// Changelog entries come already sorted, most-recent first, by the Changelog module

build/Properties/launchSettings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
"BuildDocs": {
1616
"commandName": "Project",
1717
"commandLineArgs": "--target BuildDocs"
18+
},
19+
"UpdateChangelog": {
20+
"commandName": "Project",
21+
"commandLineArgs": "--target UpdateChangelog 0.2.0"
1822
}
1923
}
2024
}

build/build.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ let watchDocsDir = temp </> "watch-docs"
6565
let gitOwner = "fsprojects"
6666
let gitRepoName = "FSharp.Control.R3"
6767

68-
let gitHubRepoUrl = $"https://github.com/%s{gitOwner}/%s{gitRepoName}/"
68+
let gitHubRepoUrl = $"https://github.com/%s{gitOwner}/%s{gitRepoName}"
6969

70-
let documentationRootUrl = $"https://%s{gitOwner}.github.io/%s{gitRepoName}/"
70+
let documentationRootUrl = $"https://%s{gitOwner}.github.io/%s{gitRepoName}"
7171

7272
let releaseBranch = "main"
7373
let readme = "README.md"

0 commit comments

Comments
 (0)