0.0.7 release notes

This commit is contained in:
Stef Heyenrath
2021-08-02 09:51:52 +00:00
parent 7baf050c12
commit 5382e9a6b9
4 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
https://github.com/StefH/GitHubReleaseNotes
GitHubReleaseNotes --output ReleaseNotes.md --skip-empty-releases --exclude-labels question invalid doc --version 0.0.6
GitHubReleaseNotes --output ReleaseNotes.md --skip-empty-releases --exclude-labels question invalid doc --version 0.0.7
+1 -1
View File
@@ -46,7 +46,7 @@ public partial interface IPerson
```
#### :two: A Proxy class
Which takes the external class in the constructor and wraps all properties.
Which takes the external class in the constructor and wraps all properties and methods.
``` c#
public class PersonProxy : IPerson
+4
View File
@@ -1,3 +1,7 @@
# 0.0.7 (02 August 2021)
- [#22](https://github.com/StefH/ProxyInterfaceSourceGenerator/pull/22) - Add support for using a simple type-name [enhancement] contributed by [StefH](https://github.com/StefH)
- [#3](https://github.com/StefH/ProxyInterfaceSourceGenerator/issues/3) - it is not allowed to put simple type name but only full name [bug]
# 0.0.6 (01 August 2021)
- [#20](https://github.com/StefH/ProxyInterfaceSourceGenerator/pull/20) - Add support for generics [enhancement] contributed by [StefH](https://github.com/StefH)
- [#6](https://github.com/StefH/ProxyInterfaceSourceGenerator/issues/6) - no support for generics [bug]
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>0.0.6</Version>
<Version>0.0.7</Version>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>9</LangVersion>
<Nullable>enable</Nullable>