summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorZane Bitter <zbitter@redhat.com>2020-08-12 10:05:45 -0400
committerZane Bitter <zbitter@redhat.com>2020-08-12 10:06:35 -0400
commit9e6c3212b9434222702e496c954cdd144b2d3b12 (patch)
tree8d5a586eee6e5dcb081c13376b125550a1354523 /doc
parent65de8cb43694bb2063248dff920cc1f0e06c851f (diff)
downloadheat-9e6c3212b9434222702e496c954cdd144b2d3b12.tar.gz
Add U + V release codenames for docs generation
This makes for nicer output in the resource types docs. Change-Id: I5c7b0e7454df0c5dd33efb03c08d15ea231bf530
Diffstat (limited to 'doc')
-rw-r--r--doc/source/ext/resources.py32
1 files changed, 18 insertions, 14 deletions
diff --git a/doc/source/ext/resources.py b/doc/source/ext/resources.py
index e239e6b6b..0c3e735f4 100644
--- a/doc/source/ext/resources.py
+++ b/doc/source/ext/resources.py
@@ -26,20 +26,24 @@ from heat.engine import plugin_manager
from heat.engine import properties
from heat.engine import support
-_CODE_NAMES = {'2013.1': 'Grizzly',
- '2013.2': 'Havana',
- '2014.1': 'Icehouse',
- '2014.2': 'Juno',
- '2015.1': 'Kilo',
- '5.0.0': 'Liberty',
- '6.0.0': 'Mitaka',
- '7.0.0': 'Newton',
- '8.0.0': 'Ocata',
- '9.0.0': 'Pike',
- '10.0.0': 'Queens',
- '11.0.0': 'Rocky',
- '12.0.0': 'Stein',
- '13.0.0': 'Train'}
+_CODE_NAMES = {
+ '2013.1': 'Grizzly',
+ '2013.2': 'Havana',
+ '2014.1': 'Icehouse',
+ '2014.2': 'Juno',
+ '2015.1': 'Kilo',
+ '5.0.0': 'Liberty',
+ '6.0.0': 'Mitaka',
+ '7.0.0': 'Newton',
+ '8.0.0': 'Ocata',
+ '9.0.0': 'Pike',
+ '10.0.0': 'Queens',
+ '11.0.0': 'Rocky',
+ '12.0.0': 'Stein',
+ '13.0.0': 'Train',
+ '14.0.0': 'Ussuri',
+ '15.0.0': 'Victoria',
+}
all_resources = {}