From a9539d2b0555b1c00868c542b53e3ff5e30b3bd1 Mon Sep 17 00:00:00 2001 From: Steven Estes Date: Thu, 29 Dec 2022 13:16:05 -0500 Subject: [PATCH] Update CI script with current Go versions, change wrapper version to v1.2.2 New wrapper version for release with updated error messages in it from YottaDB r1.36. Also updated CI script to add new Go versions we want to test with. --- .gitlab-ci.yml | 40 ++++++++++++++++++++-------------------- yottadb.go | 2 +- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 12fbbe4..1d547d0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -62,75 +62,75 @@ before_script: # # In general, test first and last minor version of each major version # -go1.13_tests: +unit_tests1.13_tests: extends: .unit_tests variables: GOLANG_VERSION: "1.13" -go1.13.8_tests: +unit_tests1.13.8_tests: extends: .unit_tests variables: GOLANG_VERSION: "1.13.8" -go1.14_tests: +unit_tests1.14_tests: extends: .unit_tests variables: GOLANG_VERSION: "1.14" -go1.14.13_tests: +unit_tests1.14.13_tests: extends: .unit_tests variables: GOLANG_VERSION: "1.14.13" -go1.15_tests: +unit_tests1.15_tests: extends: .unit_tests variables: GOLANG_VERSION: "1.15" -go1.15.15_tests: +unit_tests1.15.15_tests: extends: .unit_tests variables: GOLANG_VERSION: "1.15.15" -go1.16_tests: +unit_tests1.16: extends: .unit_tests variables: GOLANG_VERSION: "1.16" -go1.16.10_tests: +unit_tests1.16.15: extends: .unit_tests variables: - GOLANG_VERSION: "1.16.10" + GOLANG_VERSION: "1.16.15" -go1.17_tests: +unit_tests1.17: extends: .unit_tests variables: GOLANG_VERSION: "1.17" -go1.17.3_tests: +unit_tests1.17.13: extends: .unit_tests variables: - GOLANG_VERSION: "1.17.3" + GOLANG_VERSION: "1.17.13" -unit_tests1.16: +unit_tests1.18: extends: .unit_tests variables: - GOLANG_VERSION: "1.16" + GOLANG_VERSION: "1.18" -unit_tests1.16.13: +unit_tests1.18.9: extends: .unit_tests variables: - GOLANG_VERSION: "1.16.13" + GOLANG_VERSION: "1.18.9" -unit_tests1.17: +unit_tests1.19: extends: .unit_tests variables: - GOLANG_VERSION: "1.17" + GOLANG_VERSION: "1.19" -unit_tests1.17.6: +unit_tests1.19.4: extends: .unit_tests variables: - GOLANG_VERSION: "1.17.6" + GOLANG_VERSION: "1.19.4" race_detector: diff --git a/yottadb.go b/yottadb.go index 334d4e4..1a44467 100644 --- a/yottadb.go +++ b/yottadb.go @@ -68,7 +68,7 @@ var MaximumSigAckWait time.Duration = DefaultMaximumSigAckWait // on new content, either the third piece of the version will be bumped to an even value or the second piece of the // version will be bumped by 1 and the third piece of the version set to 0. On rare occasions, we may bump the first // piece of the version and zero the others when the changes are significant. -const WrapperRelease string = "v1.2.0" +const WrapperRelease string = "v1.2.2" // MinimumYDBReleaseMajor - (int) Minimum major release number required by this wrapper of the linked YottaDB const MinimumYDBReleaseMajor int = 1