Skip to content

Commit e1188f1

Browse files
authored
version 0.3.3 release notes. (#108)
1 parent d953cbb commit e1188f1

1 file changed

Lines changed: 5 additions & 7 deletions

File tree

DecoratorGenerator/DecoratorGenerator.csproj

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,15 @@
1010
<RepositoryUrl>https://github.com/CodingFlow/decorator-generator</RepositoryUrl>
1111
<PackageTags>source;generator;roslyn;decorator;proxy;</PackageTags>
1212
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
13-
<VersionPrefix>0.3.2</VersionPrefix>
14-
<Description>
15-
Source generator for decorator pattern boilerplate code in C#.
13+
<VersionPrefix>0.3.3</VersionPrefix>
14+
<Description>Source generator for decorator pattern boilerplate code in C#.
1615

17-
When implementing the decorator pattern in C#, it requires adding boilerplate code for every interface that needs to support decorators, namely the abstract class. Boilerplate is tedious to write and error-prone. This source generator solves this problem by automatically generating the abstract class. It only needs to be told which interfaces it should generate the abstract class for.
18-
</Description>
16+
When implementing the decorator pattern in C#, it requires adding boilerplate code for every interface that needs to support decorators, namely the abstract class. Boilerplate is tedious to write and error-prone. This source generator solves this problem by automatically generating the abstract class. It only needs to be told which interfaces it should generate the abstract class for.</Description>
1917
<Authors>Coding Flow</Authors>
2018
<RepositoryType>git</RepositoryType>
2119
<PackageIcon>nuget-package-logo.png</PackageIcon>
22-
<PackageReleaseNotes>0.3.2
23-
- Fix: ensure generated abstract class access modifier matches the interface's (e.g. internal or public).</PackageReleaseNotes>
20+
<PackageReleaseNotes>0.3.3
21+
- Fix: Add support for method parameter modifiers (e.g. out, in).</PackageReleaseNotes>
2422
</PropertyGroup>
2523

2624
<PropertyGroup>

0 commit comments

Comments
 (0)