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

M #-: Bump version 6.4.1

This commit is contained in:
Tino Vazquez 2022-06-27 11:45:50 +02:00
parent 70dc2b87a1
commit b1762c8e7d
5 changed files with 5 additions and 5 deletions

View File

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

View File

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

View File

@ -1 +1 @@
6.4.0
6.4.1

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

View File

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