1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-25 02:50:08 +03:00

M #-: Bump version to 6.2.0

This commit is contained in:
Tino Vazquez 2021-10-21 21:14:12 +02:00
parent 05d47fbc1e
commit f4c07fe1a9
No known key found for this signature in database
GPG Key ID: 14201E424D02047E
10 changed files with 11 additions and 11 deletions

View File

@ -150,7 +150,7 @@ public:
*/
static std::string code_version()
{
return "6.1.90"; // bump version
return "6.2.0"; // bump version
}
/**

View File

@ -29,7 +29,7 @@ require 'pp'
module CloudClient
# OpenNebula version
VERSION = '6.1.90'
VERSION = '6.2.0'
# #########################################################################
# Default location for the authentication file

View File

@ -19,7 +19,7 @@
require 'fileutils'
require 'tmpdir'
VERSION = "6.1.90"
VERSION = "6.2.0"
def version
v = VERSION

View File

@ -51,7 +51,7 @@ end
module CloudClient
# OpenNebula version
VERSION = '6.1.90'
VERSION = '6.2.0'
# #########################################################################
# Default location for the authentication file

View File

@ -1 +1 @@
6.1.90
6.2.0

View File

@ -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.1.90";
public static final String VERSION = "6.2.0";
public OneSystem(Client client)
{

View File

@ -40,7 +40,7 @@ install_requires = [
if sys.version_info[0] < 3:
install_requires.append('future')
version = '6.1.90'
version = '6.2.0'
# mark pre-release
v1 = int(version.split('.')[1])

View File

@ -77,5 +77,5 @@ require 'opennebula/flow'
module OpenNebula
# OpenNebula version
VERSION = '6.1.90'
VERSION = '6.2.0'
end

View File

@ -16,6 +16,6 @@
module OneCfg
VERSION = '6.1.90'
VERSION = '6.2.0'
end

View File

@ -303,7 +303,7 @@ SUPPORT = {
:author_name => "OpenNebula Support Team",
:support_subscription => "https://opennebula.io/support/",
:account => "https://opennebula.io/buy-support",
:docs => "https://docs.opennebula.io/6.1/",
:docs => "https://docs.opennebula.io/6.2/",
:community => "https://opennebula.io/usec",
:project => "OpenNebula"
}
@ -1195,7 +1195,7 @@ end
post '/vm/:id/guac/:type' do
vm_id = params[:id]
type_connection = params[:type]
user = OpenNebula::User.new_with_id(
OpenNebula::User::SELF,
$cloud_auth.client(session[:user], session[:active_zone_endpoint]))