Skip to content

Commit

Permalink
Bump version to 0.2.0
Browse files Browse the repository at this point in the history
## [0.2.0] - 2024-11-23

- Added some basic functions: `filter/where`, `bind`, `concat`, `distinct`, `mapi`, `skip`, `take`, …
- Added `rxquery { … }` builder
  • Loading branch information
xperiandri committed Nov 22, 2024
1 parent bcf4b5e commit 68335bc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,19 @@ 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]
## [0.2.0] - 2024-11-23

- Added some basic functions: `filter/where`, `bind`, `concat`, `distinct`, `mapi`, `skip`, `take`, …
- Added `rxquery { … }` builder

## [0.1.0] - 2024-11-18

First pre-release

### Added
- Initial implementation of the library
- `map`, `iter` and `length` functions

[Unreleased]: https://github.com/fsprojects/FSharp.Control.R3/compare/releases/0.2.0...HEAD
[0.2.0]: https://github.com/fsprojects/FSharp.Control.R3/compare/releases/0.1.0...releases/0.2.0
[0.1.0]: https://github.com/fsprojects/FSharp.Control.R3/releases/tag/releases/0.1.0
20 changes: 10 additions & 10 deletions src/FSharp.Control.R3/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ open System.Reflection

[<assembly: AssemblyTitleAttribute("FSharp.Control.R3")>]
[<assembly: AssemblyProductAttribute("FSharp.Control.R3")>]
[<assembly: AssemblyVersionAttribute("0.1.0")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2024-11-18T00:00:00.0000000")>]
[<assembly: AssemblyFileVersionAttribute("0.1.0")>]
[<assembly: AssemblyInformationalVersionAttribute("0.1.0")>]
[<assembly: AssemblyVersionAttribute("0.2.0")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2024-11-23T00:00:00.0000000+04:00")>]
[<assembly: AssemblyFileVersionAttribute("0.2.0")>]
[<assembly: AssemblyInformationalVersionAttribute("0.2.0")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","7accd8a9a4e8434e48b501db88ddac111f40e1a5")>]
[<assembly: AssemblyMetadataAttribute("GitHash","bcf4b5e21f0d02a259aa197ef45aeb98b4efee2f")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "FSharp.Control.R3"
let [<Literal>] AssemblyProduct = "FSharp.Control.R3"
let [<Literal>] AssemblyVersion = "0.1.0"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2024-11-18T00:00:00.0000000"
let [<Literal>] AssemblyFileVersion = "0.1.0"
let [<Literal>] AssemblyInformationalVersion = "0.1.0"
let [<Literal>] AssemblyVersion = "0.2.0"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2024-11-23T00:00:00.0000000+04:00"
let [<Literal>] AssemblyFileVersion = "0.2.0"
let [<Literal>] AssemblyInformationalVersion = "0.2.0"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
let [<Literal>] AssemblyMetadata_GitHash = "7accd8a9a4e8434e48b501db88ddac111f40e1a5"
let [<Literal>] AssemblyMetadata_GitHash = "bcf4b5e21f0d02a259aa197ef45aeb98b4efee2f"

0 comments on commit 68335bc

Please sign in to comment.