Skip to content

Commit c226868

Browse files
committed
bump .net version to 14.1.1.0.21
[git-p4: depot-paths = "//dev/release.net/coherence-net-v14.1.1.0/": change = 114918]
1 parent ae0f482 commit c226868

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

Coherence.properties

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,25 @@ http://oss.oracle.com/licenses/upl.
1212
<AssemblyServicePack>1</AssemblyServicePack>
1313
<!--
1414
The AssemblyPatch is a combination of 4th and 5th Oracle version numbers.
15-
The 4th number is multiplied by 1000 to allow for unto 3 digits in the 5th number.
15+
The 4th number is multiplied by 1000 to allow for upto 3 digits in the 5th number.
1616
This is the mapping scheme:
1717

1818
AssemblyPatch = 4th Oracle number * 1000 + 5th Oracle number;
1919

2020
e.g:
21-
12.2.1.0.0 (Oracle) ==> 12.2.1.0 (.NET), AssemblyPatch = 0 * 1000 + 0 = 0
22-
12.2.1.0.1 (Oracle) ==> 12.2.1.1 (.NET), AssemblyPatch = 0 * 1000 + 1 = 1
23-
12.2.1.1.0 (Oracle) ==> 12.2.1.1000 (.NET), AssemblyPatch = 1 * 1000 + 0 = 1000
24-
12.2.1.1.1 (Oracle) ==> 12.2.1.1001 (.NET), AssemblyPatch = 1 * 1000 + 1 = 1001
21+
14.1.1.0.0 (Oracle) ==> 14.1.1.0 (.NET), AssemblyPatch = 0 * 1000 + 0 = 0
22+
14.1.1.0.1 (Oracle) ==> 14.1.1.1 (.NET), AssemblyPatch = 0 * 1000 + 1 = 1
23+
14.1.1.1.0 (Oracle) ==> 14.1.1.1000 (.NET), AssemblyPatch = 1 * 1000 + 0 = 1000
24+
14.1.1.1.1 (Oracle) ==> 14.1.1.1001 (.NET), AssemblyPatch = 1 * 1000 + 1 = 1001
2525
-->
26-
<AssemblyPatch>20</AssemblyPatch>
26+
<AssemblyPatch>21</AssemblyPatch>
2727
<AssemblyDescription></AssemblyDescription>
2828
<BuildType>Release</BuildType>
2929
<!--
3030
ComponentVersion is the 4th Oracle version number.
3131
Patch is the 5th Oracle version number.
3232
-->
3333
<ComponentVersion>0</ComponentVersion>
34-
<Patch>20</Patch>
34+
<Patch>21</Patch>
3535
</PropertyGroup>
3636
</Project>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ dotnet new console -name "HelloCoherence"
160160
1. Add the following references to the HelloCoherence.csproj (provide the Coherence.dll location in the `<HintPath>`):
161161
```
162162
<ItemGroup>
163-
<Reference Include="Coherence, Version=14.1.1.20, Culture=neutral, PublicKeyToken=0ada89708fdf1f9a, processorArchitecture=MSIL">
163+
<Reference Include="Coherence, Version=14.1.1.21, Culture=neutral, PublicKeyToken=0ada89708fdf1f9a, processorArchitecture=MSIL">
164164
<HintPath>Coherence.dll</HintPath>
165165
</Reference>
166166
<PackageReference Include="Common.Logging" Version="3.4.1" />
@@ -423,7 +423,7 @@ msbuild /t:dist Coherence.msbuild
423423
```
424424
The resulting files:
425425

426-
`dist\14.1.1.20b0` - Coherence MSI installer
426+
`dist\14.1.1.21b0` - Coherence MSI installer
427427

428428
For further details on developing Coherence for .NET applications, see the documentation [here](https://docs.oracle.com/en/middleware/standalone/coherence/14.1.1.0/develop-remote-clients/creating-net-extend-clients.html).
429429

tests/Coherence.Tests/build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<property name="build.dir" value="${env.DEV_ROOT}/build"/>
3737
<property name="classes.dir" value="${build.dir}/classes"/>
3838
<property name="build.groupId_maven" value="com.oracle.coherence.ce"/>
39-
<property name="build.version_maven" value="14.1.1-0-20"/>
39+
<property name="build.version_maven" value="14.1.1-0-21"/>
4040
<property name="lib.dir" value="${env.DEV_ROOT}/lib/java"/>
4141

4242
<!-- Ivy -->

0 commit comments

Comments
 (0)