Skip to content

Commit

Permalink
M #-: Update oned version 6.99 -> 6.9 (#2978)
Browse files Browse the repository at this point in the history
* Update oned version 6.99 -> 6.9

* Update DB version 7.0 -> 6.10
  • Loading branch information
xorel committed Mar 11, 2024
1 parent 185e9f1 commit 0abfaaa
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions include/NebulaService.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ class NebulaService
*/
static std::string code_version()
{
return "6.99.80"; // bump version
return "6.9.80"; // bump version
}

/**
Expand All @@ -159,7 +159,7 @@ class NebulaService
*/
static std::string shared_db_version()
{
return "7.0.0";
return "6.10.0";
}

/**
Expand All @@ -168,7 +168,7 @@ class NebulaService
*/
static std::string local_db_version()
{
return "7.0.0";
return "6.10.0";
}

/**
Expand Down
2 changes: 1 addition & 1 deletion share/onegate/onegate
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ require 'pp'
module CloudClient

# OpenNebula version
VERSION = '6.99.80'
VERSION = '6.9.80'

# #########################################################################
# Default location for the authentication file
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
###############################################################################

# OpenNebula repository version
opennebula_repository_version: '7.0.0'
opennebula_repository_version: '6.10.0'

# Repository of the OpenNebula packages
opennebula_repository_base: 'https://downloads.opennebula.io/repo/{{ opennebula_repository_version }}'
Expand Down
2 changes: 1 addition & 1 deletion share/rubygems/generate
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
require 'fileutils'
require 'tmpdir'

VERSION = '6.99.80'
VERSION = '6.9.80'

def version
v = VERSION
Expand Down
2 changes: 1 addition & 1 deletion src/cloud/common/CloudClient.rb
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
module CloudClient

# OpenNebula version
VERSION = '6.99.80'
VERSION = '6.9.80'

# #########################################################################
# Default location for the authentication file
Expand Down
2 changes: 1 addition & 1 deletion src/im_mad/remotes/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.99.80
6.9.80
2 changes: 1 addition & 1 deletion src/oca/java/src/org/opennebula/client/OneSystem.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public class OneSystem
private static final String GROUP_QUOTA_INFO = "groupquota.info";
private static final String GROUP_QUOTA_UPDATE = "groupquota.update";

public static final String VERSION = "6.99.80";
public static final String VERSION = "6.9.80";

public OneSystem(Client client)
{
Expand Down
2 changes: 1 addition & 1 deletion src/oca/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
if sys.version_info[0] < 3:
install_requires.append('future')

version = '6.99.80'
version = '6.9.80'

# mark pre-release
v1 = int(version.split('.')[1])
Expand Down
2 changes: 1 addition & 1 deletion src/oca/ruby/opennebula.rb
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,5 @@
module OpenNebula

# OpenNebula version
VERSION = '6.99.80'
VERSION = '6.9.80'
end
2 changes: 1 addition & 1 deletion src/onecfg/lib/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@

module OneCfg

VERSION = '6.99.80'
VERSION = '6.9.80'

end
4 changes: 2 additions & 2 deletions src/onedb/database_schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ class OneDBBacKEnd
}
}

LATEST_DB_VERSION = '7.0.0'
LATEST_LOCAL_DB_VERSION = '7.0.0'
LATEST_DB_VERSION = '6.10.0'
LATEST_LOCAL_DB_VERSION = '6.10.0'

def get_schema(type, version = nil)
if !version
Expand Down
2 changes: 1 addition & 1 deletion src/sunstone/sunstone-server.rb
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@
:author_name => "OpenNebula Support Team",
:support_subscription => "https://opennebula.io/support/",
:account => "https://opennebula.io/buy-support",
:docs => "https://docs.opennebula.io/6.99/",
:docs => "https://docs.opennebula.io/6.9/",
:community => "https://opennebula.io/usec",
:project => "OpenNebula"
}
Expand Down

0 comments on commit 0abfaaa

Please sign in to comment.