Skip to content

Commit

Permalink
Version upgrade to 2.4.0 (#378)
Browse files Browse the repository at this point in the history
* Version upgrade to 2.4.0

* Update documentation
  • Loading branch information
masesdevelopers committed Feb 29, 2024
1 parent d5d862d commit 0e66acc
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 11 deletions.
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -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

---

Expand Down
3 changes: 2 additions & 1 deletion src/documentation/index.md
Expand Up @@ -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

---

Expand Down
2 changes: 1 addition & 1 deletion src/jvm/jnet/pom.xml
Expand Up @@ -40,7 +40,7 @@
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<classpathfile>${basedir}/classpathfile.classpath</classpathfile>
<jnetversion>2.3.0.0</jnetversion>
<jnetversion>2.4.0.0</jnetversion>
<jcobridgeversion>2.5.11</jcobridgeversion>
<jcobridgepath>../../../bin/net6.0/JCOBridge.jar</jcobridgepath>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion src/net/Common/Common.props
Expand Up @@ -4,7 +4,7 @@
<Owners>MASES s.r.l.</Owners>
<Authors>MASES s.r.l.</Authors>
<Company>MASES s.r.l.</Company>
<Version>2.3.0.0</Version>
<Version>2.4.0.0</Version>
<LangVersion>latest</LangVersion>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
Expand Down
2 changes: 1 addition & 1 deletion src/net/JNetCLI/JNetCLI.nuspec
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>MASES.JNetCLI</id>
<version>2.3.0</version>
<version>2.4.0</version>
<title>JNetCLI - JNet command line interface</title>
<authors>MASES s.r.l.</authors>
<owners>MASES s.r.l.</owners>
Expand Down
2 changes: 1 addition & 1 deletion src/net/JNetPS/MASES.JNetPS.psd1
Expand Up @@ -8,7 +8,7 @@

RootModule = 'MASES.JNetPS.psm1'

ModuleVersion = '2.3.0'
ModuleVersion = '2.4.0'

CompatiblePSEditions = 'Desktop', 'Core'

Expand Down
2 changes: 1 addition & 1 deletion src/net/JNetPS/MASES.JNetPSCore.psd1
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion src/net/JNetPS/MASES.JNetPSFramework.psd1
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion src/net/JNetReflector/JNetReflector.nuspec
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>MASES.JNetReflector</id>
<version>2.3.0</version>
<version>2.4.0</version>
<title>JNetReflector - JNet class reflection utility command line interface</title>
<authors>MASES s.r.l.</authors>
<owners>MASES s.r.l.</owners>
Expand Down
2 changes: 1 addition & 1 deletion src/net/templates/templates/jnetAWTApp/jnetAWTApp.csproj
Expand Up @@ -12,6 +12,6 @@
</ItemGroup>
<ItemGroup Condition="!Exists('..\..\..\JNet\JNet.csproj')">
<!--Outside GitHub repo-->
<PackageReference Include="MASES.JNet" Version="2.3.0" IncludeAssets="All" PrivateAssets="None" />
<PackageReference Include="MASES.JNet" Version="2.4.0" IncludeAssets="All" PrivateAssets="None" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/net/templates/templates/jnetApp/jnetApp.csproj
Expand Up @@ -12,6 +12,6 @@
</ItemGroup>
<ItemGroup Condition="!Exists('..\..\..\JNet\JNet.csproj')">
<!--Outside GitHub repo-->
<PackageReference Include="MASES.JNet" Version="2.3.0" IncludeAssets="All" PrivateAssets="None" />
<PackageReference Include="MASES.JNet" Version="2.4.0" IncludeAssets="All" PrivateAssets="None" />
</ItemGroup>
</Project>

0 comments on commit 0e66acc

Please sign in to comment.