Skip to content

Commit

Permalink
chore: prepare 0.2.0 changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
xperiandri committed Nov 22, 2024
1 parent 9ea92c6 commit bb8a792
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion build/Changelog.fs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions build/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
"BuildDocs": {
"commandName": "Project",
"commandLineArgs": "--target BuildDocs"
},
"UpdateChangelog": {
"commandName": "Project",
"commandLineArgs": "--target UpdateChangelog 0.2.0"
}
}
}
4 changes: 2 additions & 2 deletions build/build.fs
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit bb8a792

Please sign in to comment.