This commit is contained in:
Stef Heyenrath
2024-04-28 12:43:55 +02:00
parent b063a4b6af
commit 894b5d5049
4 changed files with 11 additions and 4 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
rem https://github.com/StefH/GitHubReleaseNotes rem https://github.com/StefH/GitHubReleaseNotes
SET version=0.0.38 SET version=0.1.0
GitHubReleaseNotes --output "ReleaseNotes.md" --skip-empty-releases --exclude-labels question invalid doc --version %version% GitHubReleaseNotes --output "ReleaseNotes.md" --skip-empty-releases --exclude-labels question invalid doc --version %version%
+4 -2
View File
@@ -1,4 +1,6 @@
# 0.0.38 (23 April 2024) # 0.1.0 (28 April 2024)
- #67 Do not redefine interfaces. [enhancement] - #68 Use fully qualified names to reduce namespace clashes. [bug]
- #70 Add tests for interfaces with same name but different namespace [test]
- #69 output filename clash in case with multiple interfaces with same name but different namespace [bug]
The full release notes can be found here: https://github.com/StefH/ProxyInterfaceSourceGenerator/blob/main/ReleaseNotes.md The full release notes can be found here: https://github.com/StefH/ProxyInterfaceSourceGenerator/blob/main/ReleaseNotes.md
+5
View File
@@ -1,3 +1,8 @@
# 0.1.0 (28 April 2024)
- [#68](https://github.com/StefH/ProxyInterfaceSourceGenerator/pull/68) - Use fully qualified names to reduce namespace clashes. [bug] contributed by [Fieslix](https://github.com/Fieslix)
- [#70](https://github.com/StefH/ProxyInterfaceSourceGenerator/pull/70) - Add tests for interfaces with same name but different namespace [test] contributed by [StefH](https://github.com/StefH)
- [#69](https://github.com/StefH/ProxyInterfaceSourceGenerator/issues/69) - output filename clash in case with multiple interfaces with same name but different namespace [bug]
# 0.0.38 (23 April 2024) # 0.0.38 (23 April 2024)
- [#67](https://github.com/StefH/ProxyInterfaceSourceGenerator/pull/67) - Do not redefine interfaces. [enhancement] contributed by [Fieslix](https://github.com/Fieslix) - [#67](https://github.com/StefH/ProxyInterfaceSourceGenerator/pull/67) - Do not redefine interfaces. [enhancement] contributed by [Fieslix](https://github.com/Fieslix)
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<Version>0.0.38</Version> <Version>0.1.0</Version>
<TargetFramework>netstandard2.0</TargetFramework> <TargetFramework>netstandard2.0</TargetFramework>
<ProjectGuid>{12344228-91F4-4502-9595-39584E5ABB34}</ProjectGuid> <ProjectGuid>{12344228-91F4-4502-9595-39584E5ABB34}</ProjectGuid>
<LangVersion>10</LangVersion> <LangVersion>10</LangVersion>