diff --git a/PackageReleaseNotes.txt b/PackageReleaseNotes.txt index 76239e1..c7ee710 100644 --- a/PackageReleaseNotes.txt +++ b/PackageReleaseNotes.txt @@ -1,5 +1,5 @@ -# 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] +# 0.0.31 (21 February 2023) +- #55 Fixed multi-dimension argument / return type [bug] +- #54 2D arrays as inputs to a method generate interfaces with incorrect asterisks in their array definitions [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 30c3d30..6a41539 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,3 +1,7 @@ +# 0.0.31 (21 February 2023) +- [#55](https://github.com/StefH/ProxyInterfaceSourceGenerator/pull/55) - Fixed multi-dimension argument / return type [bug] contributed by [StefH](https://github.com/StefH) +- [#54](https://github.com/StefH/ProxyInterfaceSourceGenerator/issues/54) - 2D arrays as inputs to a method generate interfaces with incorrect asterisks in their array definitions [bug] + # 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]