diff --git a/README.md b/README.md index 6a7713af24..880410d65f 100644 --- a/README.md +++ b/README.md @@ -80,9 +80,10 @@ This project adheres to the Contributor [Covenant code of conduct](CODE_OF_CONDU * V2.3.0+: the most notable changes in this version are in: * JNet: review of classes based on latest updates of JNetReflector * JNetReflector: use `Java.Lang.String`, by default, instead of `string` (`System.String`) (see https://github.com/masesgroup/JNet/issues/363) -* V2.3.1+: the most notable changes in this version are in: +* V2.4.0+: the most notable changes in this version are in: * JNet: review of classes based on latest updates of JNetReflector * JNetReflector: use native types only when JVM counter-part is a native type (see https://github.com/masesgroup/JNet/issues/371) + * JNetReflector: can use signature to invoke JVM methods (see https://github.com/masesgroup/JNet/issues/374) or fallback to current behavior --- diff --git a/src/documentation/index.md b/src/documentation/index.md index 072ff788c0..09ba38d3a4 100644 --- a/src/documentation/index.md +++ b/src/documentation/index.md @@ -79,9 +79,10 @@ This project adheres to the Contributor [Covenant code of conduct](CODE_OF_CONDU * V2.3.0+: the most notable changes in this version are in: * JNet: review of classes based on latest updates of JNetReflector * JNetReflector: use `Java.Lang.String`, by default, instead of `string` (`System.String`) (see https://github.com/masesgroup/JNet/issues/363) -* V2.3.1+: the most notable changes in this version are in: +* V2.4.0+: the most notable changes in this version are in: * JNet: review of classes based on latest updates of JNetReflector * JNetReflector: use native types only when JVM counter-part is a native type (see https://github.com/masesgroup/JNet/issues/371) + * JNetReflector: can use signature to invoke JVM methods (see https://github.com/masesgroup/JNet/issues/374) or fallback to current behavior --- diff --git a/src/jvm/jnet/pom.xml b/src/jvm/jnet/pom.xml index 20013c0457..aab5356015 100644 --- a/src/jvm/jnet/pom.xml +++ b/src/jvm/jnet/pom.xml @@ -40,7 +40,7 @@ 11 11 ${basedir}/classpathfile.classpath - 2.3.0.0 + 2.4.0.0 2.5.11 ../../../bin/net6.0/JCOBridge.jar diff --git a/src/net/Common/Common.props b/src/net/Common/Common.props index ba38a6059c..33ecfe39eb 100644 --- a/src/net/Common/Common.props +++ b/src/net/Common/Common.props @@ -4,7 +4,7 @@ MASES s.r.l. MASES s.r.l. MASES s.r.l. - 2.3.0.0 + 2.4.0.0 latest true true diff --git a/src/net/JNetCLI/JNetCLI.nuspec b/src/net/JNetCLI/JNetCLI.nuspec index a2835c6fdb..4a334f519b 100644 --- a/src/net/JNetCLI/JNetCLI.nuspec +++ b/src/net/JNetCLI/JNetCLI.nuspec @@ -2,7 +2,7 @@ MASES.JNetCLI - 2.3.0 + 2.4.0 JNetCLI - JNet command line interface MASES s.r.l. MASES s.r.l. diff --git a/src/net/JNetPS/MASES.JNetPS.psd1 b/src/net/JNetPS/MASES.JNetPS.psd1 index 5920e95af0..d49d563941 100644 --- a/src/net/JNetPS/MASES.JNetPS.psd1 +++ b/src/net/JNetPS/MASES.JNetPS.psd1 @@ -8,7 +8,7 @@ RootModule = 'MASES.JNetPS.psm1' -ModuleVersion = '2.3.0' +ModuleVersion = '2.4.0' CompatiblePSEditions = 'Desktop', 'Core' diff --git a/src/net/JNetPS/MASES.JNetPSCore.psd1 b/src/net/JNetPS/MASES.JNetPSCore.psd1 index 84678b1e0a..5bfbda49d0 100644 --- a/src/net/JNetPS/MASES.JNetPSCore.psd1 +++ b/src/net/JNetPS/MASES.JNetPSCore.psd1 @@ -10,7 +10,7 @@ ModuleToProcess = 'MASES.JNetPS.dll' # Version number of this module. -ModuleVersion = '2.3.0' +ModuleVersion = '2.4.0' # ID used to uniquely identify this module GUID = '85834DBD-838A-4B04-8303-DB4CF8FA44A7' diff --git a/src/net/JNetPS/MASES.JNetPSFramework.psd1 b/src/net/JNetPS/MASES.JNetPSFramework.psd1 index 31c3f4f43b..6d721ae40e 100644 --- a/src/net/JNetPS/MASES.JNetPSFramework.psd1 +++ b/src/net/JNetPS/MASES.JNetPSFramework.psd1 @@ -10,7 +10,7 @@ ModuleToProcess = 'MASES.JNetPS.dll' # Version number of this module. -ModuleVersion = '2.3.0' +ModuleVersion = '2.4.0' # ID used to uniquely identify this module GUID = 'AD7117B7-AC1A-4769-80FC-BF63A11D2B92' diff --git a/src/net/JNetReflector/JNetReflector.nuspec b/src/net/JNetReflector/JNetReflector.nuspec index 0cab50418a..b354900e38 100644 --- a/src/net/JNetReflector/JNetReflector.nuspec +++ b/src/net/JNetReflector/JNetReflector.nuspec @@ -2,7 +2,7 @@ MASES.JNetReflector - 2.3.0 + 2.4.0 JNetReflector - JNet class reflection utility command line interface MASES s.r.l. MASES s.r.l. diff --git a/src/net/templates/templates/jnetAWTApp/jnetAWTApp.csproj b/src/net/templates/templates/jnetAWTApp/jnetAWTApp.csproj index 0cd9e75e00..ea35fe84d7 100644 --- a/src/net/templates/templates/jnetAWTApp/jnetAWTApp.csproj +++ b/src/net/templates/templates/jnetAWTApp/jnetAWTApp.csproj @@ -12,6 +12,6 @@ - + diff --git a/src/net/templates/templates/jnetApp/jnetApp.csproj b/src/net/templates/templates/jnetApp/jnetApp.csproj index f44cc0dd70..4cdf7bf9d5 100644 --- a/src/net/templates/templates/jnetApp/jnetApp.csproj +++ b/src/net/templates/templates/jnetApp/jnetApp.csproj @@ -12,6 +12,6 @@ - +