Skip to content

Commit

Permalink
0.4.9
Browse files Browse the repository at this point in the history
  • Loading branch information
StefH committed Jun 25, 2022
1 parent 6e3451c commit 498840f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Generate-ReleaseNotes.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
rem https://github.com/StefH/GitHubReleaseNotes

SET version=0.4.8
SET version=0.4.9

GitHubReleaseNotes --output ReleaseNotes.md --skip-empty-releases --exclude-labels question invalid doc --version %version%

Expand Down
8 changes: 5 additions & 3 deletions PackageReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# 0.4.8 (21 June 2022)
- #37 Support different namespace for class in custom builder class [enhancement]
- #36 Issues with generating builder from an object in another namespace [bug]
# 0.4.9 (25 June 2022)
- #38 Support for init-only properties [enhancement]
- #42 Use params in 'With'-method in case the type is an array [enhancement]
- #35 Builder code should handle init setter so that it doesn't generate non-compilable code
- #39 [enhancement]: for array `with` methods, consider adding the `params` keyword for easier use [enhancement]

The full release notes can be found here: https://github.com/StefH/FluentBuilder/blob/main/ReleaseNotes.md
6 changes: 6 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 0.4.9 (25 June 2022)
- [#38](https://github.com/StefH/FluentBuilder/pull/38) - Support for init-only properties [enhancement] contributed by [StefH](https://github.com/StefH)
- [#42](https://github.com/StefH/FluentBuilder/pull/42) - Use params in 'With'-method in case the type is an array [enhancement] contributed by [StefH](https://github.com/StefH)
- [#35](https://github.com/StefH/FluentBuilder/issues/35) - Builder code should handle init setter so that it doesn't generate non-compilable code
- [#39](https://github.com/StefH/FluentBuilder/issues/39) - [enhancement]: for array `with` methods, consider adding the `params` keyword for easier use [enhancement]

# 0.4.8 (21 June 2022)
- [#37](https://github.com/StefH/FluentBuilder/pull/37) - Support different namespace for class in custom builder class [enhancement] contributed by [StefH](https://github.com/StefH)
- [#36](https://github.com/StefH/FluentBuilder/issues/36) - Issues with generating builder from an object in another namespace [bug]
Expand Down
2 changes: 1 addition & 1 deletion src/FluentBuilderGenerator/FluentBuilderGenerator.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>0.4.8</Version>
<Version>0.4.9</Version>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>10.0</LangVersion>
<ImplicitUsings>true</ImplicitUsings>
Expand Down

0 comments on commit 498840f

Please sign in to comment.