diff --git a/include/Nebula.h b/include/Nebula.h index 457080a5c8..8e4ed7a71c 100644 --- a/include/Nebula.h +++ b/include/Nebula.h @@ -383,7 +383,7 @@ public: */ static string code_version() { - return "5.9.80"; // bump version + return "5.9.90"; // bump version } /** diff --git a/share/onegate/onegate b/share/onegate/onegate index fe83950f60..5648f9ee3a 100755 --- a/share/onegate/onegate +++ b/share/onegate/onegate @@ -13,7 +13,7 @@ require 'pp' module CloudClient # OpenNebula version - VERSION = '5.9.80' + VERSION = '5.9.90' # ######################################################################### # Default location for the authentication file diff --git a/share/rubygems/generate b/share/rubygems/generate index 72d457a6cd..38c057c68a 100755 --- a/share/rubygems/generate +++ b/share/rubygems/generate @@ -19,7 +19,7 @@ require 'fileutils' require 'tmpdir' -VERSION = "5.9.80" +VERSION = "5.9.90" def version v = VERSION diff --git a/src/cloud/common/CloudClient.rb b/src/cloud/common/CloudClient.rb index b055da2076..86e07f35c8 100644 --- a/src/cloud/common/CloudClient.rb +++ b/src/cloud/common/CloudClient.rb @@ -50,7 +50,7 @@ end module CloudClient # OpenNebula version - VERSION = '5.9.80' + VERSION = '5.9.90' # ######################################################################### # Default location for the authentication file diff --git a/src/im_mad/remotes/VERSION b/src/im_mad/remotes/VERSION index fb4d0da6cd..b650331799 100644 --- a/src/im_mad/remotes/VERSION +++ b/src/im_mad/remotes/VERSION @@ -1 +1 @@ -5.9.80 \ No newline at end of file +5.9.90 \ No newline at end of file diff --git a/src/ipamm_mad/remotes/packet/allocate_address b/src/ipamm_mad/remotes/packet/allocate_address index 94ce1ca055..3bf3c8b26d 100755 --- a/src/ipamm_mad/remotes/packet/allocate_address +++ b/src/ipamm_mad/remotes/packet/allocate_address @@ -1,7 +1,7 @@ #!/usr/bin/env ruby # -------------------------------------------------------------------------- # -# Copyright 2002-2018, OpenNebula Project, OpenNebula Systems # +# Copyright 2002-2019, OpenNebula Project, OpenNebula Systems # # # # Licensed under the Apache License, Version 2.0 (the "License"); you may # # not use this file except in compliance with the License. You may obtain # diff --git a/src/ipamm_mad/remotes/packet/free_address b/src/ipamm_mad/remotes/packet/free_address index 415c0918eb..983fc9675a 100755 --- a/src/ipamm_mad/remotes/packet/free_address +++ b/src/ipamm_mad/remotes/packet/free_address @@ -1,7 +1,7 @@ #!/usr/bin/env ruby # -------------------------------------------------------------------------- # -# Copyright 2002-2018, OpenNebula Project, OpenNebula Systems # +# Copyright 2002-2019, OpenNebula Project, OpenNebula Systems # # # # Licensed under the Apache License, Version 2.0 (the "License"); you may # # not use this file except in compliance with the License. You may obtain # diff --git a/src/ipamm_mad/remotes/packet/get_address b/src/ipamm_mad/remotes/packet/get_address index bbe49818e9..3d8960a2aa 100755 --- a/src/ipamm_mad/remotes/packet/get_address +++ b/src/ipamm_mad/remotes/packet/get_address @@ -1,7 +1,7 @@ #!/usr/bin/env ruby # -------------------------------------------------------------------------- # -# Copyright 2002-2018, OpenNebula Project, OpenNebula Systems # +# Copyright 2002-2019, OpenNebula Project, OpenNebula Systems # # # # Licensed under the Apache License, Version 2.0 (the "License"); you may # # not use this file except in compliance with the License. You may obtain # diff --git a/src/ipamm_mad/remotes/packet/register_address_range b/src/ipamm_mad/remotes/packet/register_address_range index 9e286278ab..835e79dd1b 100755 --- a/src/ipamm_mad/remotes/packet/register_address_range +++ b/src/ipamm_mad/remotes/packet/register_address_range @@ -1,7 +1,7 @@ #!/usr/bin/env ruby # -------------------------------------------------------------------------- # -# Copyright 2002-2018, OpenNebula Project, OpenNebula Systems # +# Copyright 2002-2019, OpenNebula Project, OpenNebula Systems # # # # Licensed under the Apache License, Version 2.0 (the "License"); you may # # not use this file except in compliance with the License. You may obtain # diff --git a/src/ipamm_mad/remotes/packet/unregister_address_range b/src/ipamm_mad/remotes/packet/unregister_address_range index 9c3dc0c056..3be928010f 100755 --- a/src/ipamm_mad/remotes/packet/unregister_address_range +++ b/src/ipamm_mad/remotes/packet/unregister_address_range @@ -1,7 +1,7 @@ #!/usr/bin/env ruby # -------------------------------------------------------------------------- # -# Copyright 2002-2018, OpenNebula Project, OpenNebula Systems # +# Copyright 2002-2019, OpenNebula Project, OpenNebula Systems # # # # Licensed under the Apache License, Version 2.0 (the "License"); you may # # not use this file except in compliance with the License. You may obtain # diff --git a/src/oca/java/src/org/opennebula/client/OneSystem.java b/src/oca/java/src/org/opennebula/client/OneSystem.java index 57cbb66d38..83ce17b277 100644 --- a/src/oca/java/src/org/opennebula/client/OneSystem.java +++ b/src/oca/java/src/org/opennebula/client/OneSystem.java @@ -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.9.80"; + public static final String VERSION = "5.9.90"; public OneSystem(Client client) { diff --git a/src/oca/python/setup.py b/src/oca/python/setup.py index 1ad5da9a1e..438615e309 100644 --- a/src/oca/python/setup.py +++ b/src/oca/python/setup.py @@ -41,7 +41,7 @@ if sys.version_info[0] < 3: setup( name='pyone', - version='5.9.80', + version='5.9.90', description='Python Bindings for OpenNebula XML-RPC API', long_description=long_description, diff --git a/src/oca/ruby/opennebula.rb b/src/oca/ruby/opennebula.rb index 2e899e7963..f53cd8623c 100644 --- a/src/oca/ruby/opennebula.rb +++ b/src/oca/ruby/opennebula.rb @@ -74,5 +74,5 @@ require 'opennebula/hook_log' module OpenNebula # OpenNebula version - VERSION = '5.9.80' + VERSION = '5.9.90' end diff --git a/src/sunstone/models/OpenNebula2FA/sunstone_2f_auth.rb b/src/sunstone/models/OpenNebula2FA/sunstone_2f_auth.rb index 3a475dd814..ce78645d7c 100644 --- a/src/sunstone/models/OpenNebula2FA/sunstone_2f_auth.rb +++ b/src/sunstone/models/OpenNebula2FA/sunstone_2f_auth.rb @@ -1,5 +1,5 @@ # -------------------------------------------------------------------------- # -# Copyright 2002-2018, OpenNebula Project, OpenNebula Systems # +# Copyright 2002-2019, OpenNebula Project, OpenNebula Systems # # # # Licensed under the Apache License, Version 2.0 (the "License"); you may # # not use this file except in compliance with the License. You may obtain # diff --git a/src/sunstone/models/OpenNebula2FA/sunstone_optp.rb b/src/sunstone/models/OpenNebula2FA/sunstone_optp.rb index f3207e2c0f..2f706b33be 100644 --- a/src/sunstone/models/OpenNebula2FA/sunstone_optp.rb +++ b/src/sunstone/models/OpenNebula2FA/sunstone_optp.rb @@ -1,5 +1,5 @@ # -------------------------------------------------------------------------- # -# Copyright 2002-2018, OpenNebula Project, OpenNebula Systems # +# Copyright 2002-2019, OpenNebula Project, OpenNebula Systems # # # # Licensed under the Apache License, Version 2.0 (the "License"); you may # # not use this file except in compliance with the License. You may obtain # diff --git a/src/sunstone/models/OpenNebula2FA/sunstone_qr_code.rb b/src/sunstone/models/OpenNebula2FA/sunstone_qr_code.rb index 05c5f2d674..f4c43090b2 100644 --- a/src/sunstone/models/OpenNebula2FA/sunstone_qr_code.rb +++ b/src/sunstone/models/OpenNebula2FA/sunstone_qr_code.rb @@ -1,5 +1,5 @@ # -------------------------------------------------------------------------- # -# Copyright 2002-2018, OpenNebula Project, OpenNebula Systems # +# Copyright 2002-2019, OpenNebula Project, OpenNebula Systems # # # # Licensed under the Apache License, Version 2.0 (the "License"); you may # # not use this file except in compliance with the License. You may obtain # diff --git a/src/sunstone/public/app/tabs/users-tab/dialogs/two-factor-auth.js b/src/sunstone/public/app/tabs/users-tab/dialogs/two-factor-auth.js index 5a07b55833..e4f558126d 100644 --- a/src/sunstone/public/app/tabs/users-tab/dialogs/two-factor-auth.js +++ b/src/sunstone/public/app/tabs/users-tab/dialogs/two-factor-auth.js @@ -1,5 +1,5 @@ /* -------------------------------------------------------------------------- */ -/* Copyright 2002-2018, OpenNebula Project, OpenNebula Systems */ +/* Copyright 2002-2019, OpenNebula Project, OpenNebula Systems */ /* */ /* Licensed under the Apache License, Version 2.0 (the "License"); you may */ /* not use this file except in compliance with the License. You may obtain */ diff --git a/src/sunstone/public/app/tabs/users-tab/dialogs/two-factor-auth/dialogId.js b/src/sunstone/public/app/tabs/users-tab/dialogs/two-factor-auth/dialogId.js index 52156b7fe5..7030bd567b 100644 --- a/src/sunstone/public/app/tabs/users-tab/dialogs/two-factor-auth/dialogId.js +++ b/src/sunstone/public/app/tabs/users-tab/dialogs/two-factor-auth/dialogId.js @@ -1,5 +1,5 @@ /* -------------------------------------------------------------------------- */ -/* Copyright 2002-2018, OpenNebula Project, OpenNebula Systems */ +/* Copyright 2002-2019, OpenNebula Project, OpenNebula Systems */ /* */ /* Licensed under the Apache License, Version 2.0 (the "License"); you may */ /* not use this file except in compliance with the License. You may obtain */ diff --git a/src/sunstone/public/app/tabs/users-tab/dialogs/two-factor-auth/html.hbs b/src/sunstone/public/app/tabs/users-tab/dialogs/two-factor-auth/html.hbs index 8906668671..93bd9ebf97 100644 --- a/src/sunstone/public/app/tabs/users-tab/dialogs/two-factor-auth/html.hbs +++ b/src/sunstone/public/app/tabs/users-tab/dialogs/two-factor-auth/html.hbs @@ -1,5 +1,5 @@ {{! -------------------------------------------------------------------------- }} -{{! Copyright 2002-2018, OpenNebula Project, OpenNebula Systems }} +{{! Copyright 2002-2019, OpenNebula Project, OpenNebula Systems }} {{! }} {{! Licensed under the Apache License, Version 2.0 (the "License"); you may }} {{! not use this file except in compliance with the License. You may obtain }}