diff --git a/Generate-ReleaseNotes.bat b/Generate-ReleaseNotes.bat index f517177..cb1804a 100644 --- a/Generate-ReleaseNotes.bat +++ b/Generate-ReleaseNotes.bat @@ -1,6 +1,6 @@ rem https://github.com/StefH/GitHubReleaseNotes -SET version=0.0.29 +SET version=0.0.30 GitHubReleaseNotes --output "ReleaseNotes.md" --skip-empty-releases --exclude-labels question invalid doc --version %version% diff --git a/PackageReleaseNotes.txt b/PackageReleaseNotes.txt index 77d9f6a..76239e1 100644 --- a/PackageReleaseNotes.txt +++ b/PackageReleaseNotes.txt @@ -1,4 +1,5 @@ -# 0.0.29 (09 January 2023) -- #51 Add support for implicit and explicit operators [enhancement] +# 0.0.30 (23 January 2023) +- #53 Return correct type (interfacve) for array [bug] +- #52 Proxied array return types are left as is, and do not return their proxied type [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 ae52bd5..30c3d30 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,3 +1,7 @@ +# 0.0.30 (23 January 2023) +- [#53](https://github.com/StefH/ProxyInterfaceSourceGenerator/pull/53) - Return correct type (interfacve) for array [bug] contributed by [StefH](https://github.com/StefH) +- [#52](https://github.com/StefH/ProxyInterfaceSourceGenerator/issues/52) - Proxied array return types are left as is, and do not return their proxied type [bug] + # 0.0.29 (09 January 2023) - [#51](https://github.com/StefH/ProxyInterfaceSourceGenerator/pull/51) - Add support for implicit and explicit operators [enhancement] contributed by [StefH](https://github.com/StefH)