Skip to content

Commit 1501371

Browse files
committed
Bump version to 4.1.0
## [4.1.0] - 2023-10-24 ### Added - Support for optional subsections by [queil](https://github.com/queil)
1 parent b1fbcfa commit 1501371

File tree

2 files changed

+18
-11
lines changed

2 files changed

+18
-11
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [4.1.0] - 2023-10-24
9+
10+
### Added
11+
12+
- Support for optional subsections by [queil](https://github.com/queil)
13+
814
## [4.0.0] - 2023-06-18
915

1016
### Changed
@@ -167,5 +173,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
167173
### Added
168174

169175
- Initial release
170-
[Unreleased]: https://github.com/demystifyfp/FsConfig/compare/v4.0.0...HEAD
176+
[Unreleased]: https://github.com/demystifyfp/FsConfig/compare/v4.1.0...HEAD
177+
[4.1.0]: https://github.com/demystifyfp/FsConfig/compare/v4.0.0...v4.1.0
171178
[4.0.0]: https://github.com/demystifyfp/FsConfig/compare/v3.1.0...v4.0.0

src/FsConfig/AssemblyInfo.fs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ open System.Reflection
44

55
[<assembly: AssemblyTitleAttribute("FsConfig")>]
66
[<assembly: AssemblyProductAttribute("FsConfig")>]
7-
[<assembly: AssemblyVersionAttribute("4.0.0")>]
8-
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2023-06-18T00:00:00.0000000+01:00")>]
9-
[<assembly: AssemblyFileVersionAttribute("4.0.0")>]
10-
[<assembly: AssemblyInformationalVersionAttribute("4.0.0")>]
7+
[<assembly: AssemblyVersionAttribute("4.1.0")>]
8+
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2023-10-24T00:00:00.0000000+00:00")>]
9+
[<assembly: AssemblyFileVersionAttribute("4.1.0")>]
10+
[<assembly: AssemblyInformationalVersionAttribute("4.1.0")>]
1111
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
12-
[<assembly: AssemblyMetadataAttribute("GitHash","247fcb0aa106a1934a3a151b6d2bfd716957f2a1")>]
12+
[<assembly: AssemblyMetadataAttribute("GitHash","b1fbcfab8f27e0c13e5038a2bbd38b3911f8441a")>]
1313
do ()
1414

1515
module internal AssemblyVersionInformation =
1616
let [<Literal>] AssemblyTitle = "FsConfig"
1717
let [<Literal>] AssemblyProduct = "FsConfig"
18-
let [<Literal>] AssemblyVersion = "4.0.0"
19-
let [<Literal>] AssemblyMetadata_ReleaseDate = "2023-06-18T00:00:00.0000000+01:00"
20-
let [<Literal>] AssemblyFileVersion = "4.0.0"
21-
let [<Literal>] AssemblyInformationalVersion = "4.0.0"
18+
let [<Literal>] AssemblyVersion = "4.1.0"
19+
let [<Literal>] AssemblyMetadata_ReleaseDate = "2023-10-24T00:00:00.0000000+00:00"
20+
let [<Literal>] AssemblyFileVersion = "4.1.0"
21+
let [<Literal>] AssemblyInformationalVersion = "4.1.0"
2222
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
23-
let [<Literal>] AssemblyMetadata_GitHash = "247fcb0aa106a1934a3a151b6d2bfd716957f2a1"
23+
let [<Literal>] AssemblyMetadata_GitHash = "b1fbcfab8f27e0c13e5038a2bbd38b3911f8441a"

0 commit comments

Comments
 (0)