Revision a8ee6e94

b/NEWS
4 4
Version 2.3 rc0
5 5
---------------
6 6

  
7
*(unreleased)*
7
*(Released Tue, 2 Nov 2010)*
8 8

  
9 9
- Fixed clearing of the default iallocator using ``gnt-cluster modify``
10 10
- Fixed master failover race with watcher
......
22 22
- Added option to ignore offline node on instance start/stop
23 23
  (``--ignore-offline``)
24 24
- Allow overriding OS parameters with ``gnt-instance reinstall``
25
- Added ability to change node's secondary IP address using ``gnt-node
26
  modify``
25 27
- Implemented privilege separation for all daemons except
26 28
  ``ganeti-noded``, see ``configure`` options
27 29
- Complain if an instance's disk is marked faulty in ``gnt-cluster
b/configure.ac
1 1
# Configure script for Ganeti
2 2
m4_define([gnt_version_major], [2])
3
m4_define([gnt_version_minor], [2])
4
m4_define([gnt_version_revision], [1])
5
m4_define([gnt_version_suffix], [])
3
m4_define([gnt_version_minor], [3])
4
m4_define([gnt_version_revision], [0])
5
m4_define([gnt_version_suffix], [~rc0])
6 6
m4_define([gnt_version_full],
7 7
          m4_format([%d.%d.%d%s],
8 8
                    gnt_version_major, gnt_version_minor,
b/tools/cfgupgrade
141 141
    raise Error("Inconsistent configuration: found config_version in"
142 142
                " configuration file")
143 143

  
144
  # Upgrade from 2.0/2.1 to 2.2
145
  if config_major == 2 and config_minor in (0, 1):
144
  # Upgrade from 2.0/2.1/2.2 to 2.3
145
  if config_major == 2 and config_minor in (0, 1, 2):
146 146
    if config_revision != 0:
147 147
      logging.warning("Config revision is %s, not 0", config_revision)
148 148

  
149
    config_data["version"] = constants.BuildVersion(2, 2, 0)
149
    config_data["version"] = constants.BuildVersion(2, 3, 0)
150 150

  
151
  elif config_major == 2 and config_minor == 2:
151
  elif config_major == 2 and config_minor == 3:
152 152
    logging.info("No changes necessary")
153 153

  
154 154
  else:

Also available in: Unified diff