From 898095109055ea9b8388e35043f7b54a089a390d Mon Sep 17 00:00:00 2001
From: CodingFlow <3643313+CodingFlow@users.noreply.github.com>
Date: Tue, 27 Jan 2026 17:07:34 -0500
Subject: [PATCH] version 0.3.3 release notes.
---
DecoratorGenerator/DecoratorGenerator.csproj | 12 +++++-------
1 file changed, 5 insertions(+), 7 deletions(-)
diff --git a/DecoratorGenerator/DecoratorGenerator.csproj b/DecoratorGenerator/DecoratorGenerator.csproj
index 2b0333d..1a24345 100644
--- a/DecoratorGenerator/DecoratorGenerator.csproj
+++ b/DecoratorGenerator/DecoratorGenerator.csproj
@@ -10,17 +10,15 @@
https://github.com/CodingFlow/decorator-generator
source;generator;roslyn;decorator;proxy;
Apache-2.0
- 0.3.2
-
- Source generator for decorator pattern boilerplate code in C#.
+ 0.3.3
+ Source generator for decorator pattern boilerplate code in C#.
- 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.
-
+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.
Coding Flow
git
nuget-package-logo.png
- 0.3.2
-- Fix: ensure generated abstract class access modifier matches the interface's (e.g. internal or public).
+ 0.3.3
+- Fix: Add support for method parameter modifiers (e.g. out, in).