Skip to content

Commit

Permalink
Bumped version to 1.4.0.1 (#113)
Browse files Browse the repository at this point in the history
* Bumped version

Signed-off-by: Guian Gumpac <guian.gumpac@improving.com>

* Added bumping version to release notes

Signed-off-by: Guian Gumpac <guian.gumpac@improving.com>

---------

Signed-off-by: Guian Gumpac <guian.gumpac@improving.com>
  • Loading branch information
GumpacG committed Aug 22, 2023
1 parent f2bebcd commit 3b0ae70
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ plugins {
group 'org.opensearch.driver'

// keep version in sync with version in Driver source
version '1.4.0.0'
version '1.4.0.1'

boolean snapshot = "true".equals(System.getProperty("build.snapshot", "false"));
if (snapshot) {
Expand Down
1 change: 1 addition & 0 deletions release-notes/opensearch-jdbc-release-notes-1.4.0.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
### Maintenance
* Update jenkins file to use updated docker image ([#104](https://github.com/opensearch-project/sql-jdbc/pull/104))
* Include shadowJar artifact to release workflow ([#106](https://github.com/opensearch-project/sql-jdbc/pull/106))
* Bumped version to 1.4.0.1 ([#113](https://github.com/opensearch-project/sql-jdbc/pull/113))
2 changes: 1 addition & 1 deletion src/main/java/org/opensearch/jdbc/internal/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
public enum Version {

// keep this in sync with the gradle version
Current(1, 4, 0, 0);
Current(1, 4, 0, 1);

private int major;
private int minor;
Expand Down

0 comments on commit 3b0ae70

Please sign in to comment.