Skip to content

Commit bf828b6

Browse files
committed
Change version to 2.0.5
1 parent 36aa346 commit bf828b6

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# ---------------------------------------------------------------------------
99

1010
# The version of the Operator being build - this should be a valid SemVer format
11-
VERSION ?= 2.0.4
11+
VERSION ?= 2.0.5
1212

1313
# VERSION_SUFFIX is ann optional version suffix. For a full release this should be
1414
# set to blank, for an interim release it should be set to a value to identify that

docs/developer/05_building.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ By default the version number used to tag the Docker images and Helm charts is s
4747
in the `Makefile` and in the `pom.xml` files in the `java/` directory.
4848
4949
The `Makefile` also contains a `VERSION_SUFFIX` variable that is used to add a suffix to the build. By default
50-
this suffix is `ci` so the default version of the build artifacts is `2.0.4-ci`. Change this suffix, for
50+
this suffix is `ci` so the default version of the build artifacts is `2.0.5-ci`. Change this suffix, for
5151
example when building a release candidate or a full release.
5252
5353
For example, if building a release called `alpha2` the following command can be used:

examples/deployment/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ This will result in the following Docker image being created which contains the
152152
artifacts to be use by all deployments.
153153

154154
```console
155-
deployment-example:2.0.4
155+
deployment-example:2.0.5
156156
```
157157
## Install the Coherence Operator
158158

examples/deployment/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
<parent>
1616
<groupId>com.oracle.coherence.kubernetes</groupId>
1717
<artifactId>examples-parent</artifactId>
18-
<version>2.0.4</version>
18+
<version>2.0.5</version>
1919
<relativePath>../pom.xml</relativePath>
2020
</parent>
2121

2222
<artifactId>deployment-example</artifactId>
2323
<name>Coherence Operator Deployment Example</name>
24-
<version>2.0.4</version>
24+
<version>2.0.5</version>
2525

2626
<properties>
2727
<maven.compiler.source>8</maven.compiler.source>

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<groupId>com.oracle.coherence.kubernetes</groupId>
1717
<artifactId>examples-parent</artifactId>
1818
<packaging>pom</packaging>
19-
<version>2.0.4</version>
19+
<version>2.0.5</version>
2020

2121
<description>Oracle Coherence Operator Examples Project</description>
2222
<name>Oracle Coherence Operator Examples Parent</name>

java/coherence-utils/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<parent>
1616
<groupId>com.oracle.coherence.kubernetes</groupId>
1717
<artifactId>operator-parent</artifactId>
18-
<version>2.0.4</version>
18+
<version>2.0.5</version>
1919
</parent>
2020

2121
<artifactId>coherence-utils</artifactId>

java/docs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<parent>
1616
<groupId>com.oracle.coherence.kubernetes</groupId>
1717
<artifactId>operator-parent</artifactId>
18-
<version>2.0.4</version>
18+
<version>2.0.5</version>
1919
</parent>
2020

2121
<artifactId>operator-docs</artifactId>

java/operator-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<parent>
1616
<groupId>com.oracle.coherence.kubernetes</groupId>
1717
<artifactId>operator-parent</artifactId>
18-
<version>2.0.4</version>
18+
<version>2.0.5</version>
1919
</parent>
2020

2121
<artifactId>operator-test</artifactId>

java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<groupId>com.oracle.coherence.kubernetes</groupId>
1717
<artifactId>operator-parent</artifactId>
1818
<packaging>pom</packaging>
19-
<version>2.0.4</version>
19+
<version>2.0.5</version>
2020

2121
<description>Oracle Coherence Kubernetes Operator Project</description>
2222
<name>coherence-operator parent</name>

0 commit comments

Comments
 (0)