diff --git a/Generate-ReleaseNotes.bat b/Generate-ReleaseNotes.bat index c88ba5b..14d68b7 100644 --- a/Generate-ReleaseNotes.bat +++ b/Generate-ReleaseNotes.bat @@ -1,6 +1,6 @@ rem https://github.com/StefH/GitHubReleaseNotes -SET version=0.0.25 +SET version=0.0.26 GitHubReleaseNotes --output "ReleaseNotes.md" --skip-empty-releases --exclude-labels question invalid doc --version %version% diff --git a/PackageReleaseNotes.txt b/PackageReleaseNotes.txt index 529ca1a..76899f7 100644 --- a/PackageReleaseNotes.txt +++ b/PackageReleaseNotes.txt @@ -1,5 +1,7 @@ -# 0.0.25 (13 December 2022) -- #41 Fixed GetDeterministicHashCodeAsString (use InvariantCulture) [bug] -- #40 Invalid code is generated for some locales (e.g. sv-ES) [bug] +# 0.0.26 (14 December 2022) +- #46 Add support to generate code for interface without a namespace [enhancement] +- #47 Only generate setters and getters for public properties [bug] +- #42 Build error on missing namespace [bug] +- #44 Build error on mixed visibility properties [bug] The full release notes can be found here: https://github.com/StefH/ProxyInterfaceSourceGenerator/blob/main/ReleaseNotes.md \ No newline at end of file diff --git a/ReleaseNotes.md b/ReleaseNotes.md index bb977aa..9eb277a 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,3 +1,9 @@ +# 0.0.26 (14 December 2022) +- [#46](https://github.com/StefH/ProxyInterfaceSourceGenerator/pull/46) - Add support to generate code for interface without a namespace [enhancement] contributed by [StefH](https://github.com/StefH) +- [#47](https://github.com/StefH/ProxyInterfaceSourceGenerator/pull/47) - Only generate setters and getters for public properties [bug] contributed by [StefH](https://github.com/StefH) +- [#42](https://github.com/StefH/ProxyInterfaceSourceGenerator/issues/42) - Build error on missing namespace [bug] +- [#44](https://github.com/StefH/ProxyInterfaceSourceGenerator/issues/44) - Build error on mixed visibility properties [bug] + # 0.0.25 (13 December 2022) - [#41](https://github.com/StefH/ProxyInterfaceSourceGenerator/pull/41) - Fixed GetDeterministicHashCodeAsString (use InvariantCulture) [bug] contributed by [StefH](https://github.com/StefH) - [#40](https://github.com/StefH/ProxyInterfaceSourceGenerator/issues/40) - Invalid code is generated for some locales (e.g. sv-ES) [bug] diff --git a/src/ProxyInterfaceSourceGenerator/ProxyInterfaceSourceGenerator.csproj b/src/ProxyInterfaceSourceGenerator/ProxyInterfaceSourceGenerator.csproj index 2016ff7..a9bb283 100644 --- a/src/ProxyInterfaceSourceGenerator/ProxyInterfaceSourceGenerator.csproj +++ b/src/ProxyInterfaceSourceGenerator/ProxyInterfaceSourceGenerator.csproj @@ -1,7 +1,7 @@ - 0.0.25 + 0.0.26 netstandard2.0 {12344228-91F4-4502-9595-39584E5ABB34} 10