Merge lp:~soren/nova/rc-preparation into lp:~hudson-openstack/nova/trunk

Proposed by Soren Hansen
Status: Merged
Approved by: Soren Hansen
Approved revision: 645
Merged at revision: 645
Proposed branch: lp:~soren/nova/rc-preparation
Merge into: lp:~hudson-openstack/nova/trunk
Diff against target: 12 lines (+1/-1)
1 file modified
nova/version.py (+1/-1)
To merge this branch: bzr merge lp:~soren/nova/rc-preparation
Reviewer Review Type Date Requested Status
Thierry Carrez (community) Approve
Nova Core security contacts Pending
Review via email: mp+48288@code.launchpad.net

Commit message

Set FINAL = True in version.py.

Description of the change

Set FINAL = True in version.py.

Apparantly, these days, the only effect this will have is on the documentation
that will read "nova v2011.1" instead of "nova v2011.1-dev". Nevertheless, needs
to be done.

To post a comment you must log in.
Revision history for this message
Thierry Carrez (ttx) wrote :

Looks good

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'nova/version.py'
2--- nova/version.py 2011-01-13 16:57:06 +0000
3+++ nova/version.py 2011-02-02 10:23:17 +0000
4@@ -24,7 +24,7 @@
5 NOVA_VERSION = ['2011', '1']
6 YEAR, COUNT = NOVA_VERSION
7
8-FINAL = False # This becomes true at Release Candidate time
9+FINAL = True # This becomes true at Release Candidate time
10
11
12 def canonical_version_string():