diff --git a/.env b/.env index 1e759ae25..473d8d856 100644 --- a/.env +++ b/.env @@ -16,6 +16,6 @@ COSMOS_SR_MINIO_USERNAME=scriptrunnerminio COSMOS_SR_MINIO_PASSWORD=scriptrunnerminiopassword COSMOS_TAG=latest -COSMOS_VERSION=5.0.1.beta +COSMOS_VERSION=5.0.1 COSMOS_DEMO=1 \ No newline at end of file diff --git a/cosmos/lib/cosmos/version.rb b/cosmos/lib/cosmos/version.rb index 02a33d0a4..e4de5b704 100644 --- a/cosmos/lib/cosmos/version.rb +++ b/cosmos/lib/cosmos/version.rb @@ -1,12 +1,12 @@ # encoding: ascii-8bit -COSMOS_VERSION = '5.0.0' +COSMOS_VERSION = '5.0.1' module Cosmos module Version MAJOR = '5' MINOR = '0' - PATCH = '0' - BUILD = '4018499331b33e145abf128e13f31eeadd3f3c48' + PATCH = '1' + BUILD = '11242021' end - VERSION = '5.0.0' + VERSION = '5.0.1' end