Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 5.8.2 #3202

Merged
merged 1 commit into from
Apr 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/Nebula.h
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ class Nebula
*/
static string code_version()
{
return "5.8.1"; // bump version
return "5.8.2"; // bump version
}

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

# OpenNebula version
VERSION = '5.8.1'
VERSION = '5.8.2'

# #########################################################################
# Default location for the authentication file
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 = "5.8.1"
VERSION = "5.8.2"

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 @@ -50,7 +50,7 @@
module CloudClient

# OpenNebula version
VERSION = '5.8.1'
VERSION = '5.8.2'

# #########################################################################
# 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 @@
5.8.1
5.8.2
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 = "5.8.1";
public static final String VERSION = "5.8.2";

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 @@ -41,7 +41,7 @@

setup(
name='pyone',
version='5.8.1',
version='5.8.2',
description='Python Bindings for OpenNebula XML-RPC API',
long_description=long_description,

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 @@ -71,5 +71,5 @@
module OpenNebula

# OpenNebula version
VERSION = '5.8.1'
VERSION = '5.8.2'
end