This commit is contained in:
Stef Heyenrath
2021-08-10 20:34:38 +02:00
parent 00cd67f355
commit ebfe3f407e
3 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
rem https://github.com/StefH/GitHubReleaseNotes
SET version=0.0.10
SET version=0.0.11
GitHubReleaseNotes --output "ReleaseNotes.md" --skip-empty-releases --exclude-labels question invalid doc --version %version%
+2 -3
View File
@@ -1,5 +1,4 @@
# 0.0.10 (06 August 2021)
- #25 Fix support for Nullable (language version 8) [bug]
- #14 for projects where #nullable is disabled emitting nullable reftype without preprocessor '#nullable enable' would result in compile time error. [bug]
# 0.0.11 (10 August 2021)
- #26 Update filename for generated interface files + set DevelopmentDependency to true for the project [enhancement]
The full release notes can be found here: https://github.com/StefH/ProxyInterfaceSourceGenerator/blob/main/ReleaseNotes.md
+3
View File
@@ -1,3 +1,6 @@
# 0.0.11 (10 August 2021)
- [#26](https://github.com/StefH/ProxyInterfaceSourceGenerator/pull/26) - Update filename for generated interface files + set DevelopmentDependency to true for the project [enhancement] contributed by [StefH](https://github.com/StefH)
# 0.0.10 (06 August 2021)
- [#25](https://github.com/StefH/ProxyInterfaceSourceGenerator/pull/25) - Fix support for Nullable (language version 8) [bug] contributed by [StefH](https://github.com/StefH)
- [#14](https://github.com/StefH/ProxyInterfaceSourceGenerator/issues/14) - for projects where #nullable is disabled emitting nullable reftype without preprocessor '#nullable enable' would result in compile time error. [bug]