From c859b2194ef868fd8ed676f286e88201082e5933 Mon Sep 17 00:00:00 2001 From: Christian Sauer Date: Sun, 4 Aug 2024 18:21:21 +0200 Subject: [PATCH] add docs for the changes --- .../AutomaticInterface/AutomaticInterface.csproj | 2 +- README.md | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/AutomaticInterface/AutomaticInterface/AutomaticInterface.csproj b/AutomaticInterface/AutomaticInterface/AutomaticInterface.csproj index 0506e61..1c4fac4 100644 --- a/AutomaticInterface/AutomaticInterface/AutomaticInterface.csproj +++ b/AutomaticInterface/AutomaticInterface/AutomaticInterface.csproj @@ -25,7 +25,7 @@ MIT True latest-Recommended - 2.3.0 + 2.4.0 README.md true 1701;1702;NU5128 diff --git a/README.md b/README.md index dfdf1cf..793333c 100644 --- a/README.md +++ b/README.md @@ -167,6 +167,9 @@ Should be simply a build and run Tests ## Changelog +### 2.40. +- Now prevents duplicates when overriding or shadowing methods (`new void DoSomething()`). Thanks simonmckenzie! + ### 2.3.0 - Now supports methods with `ref / in / out` parameters. Thanks mohummedibrahim