diff options
author | Ben Nemec <bnemec@redhat.com> | 2018-04-05 14:10:27 +0000 |
---|---|---|
committer | Ben Nemec <bnemec@redhat.com> | 2018-04-05 14:11:01 +0000 |
commit | 110191aa505cfefafee1c8579213b2f9c3397b6c (patch) | |
tree | 59f5adf9b82a4987ca780636684b2ec378079513 | |
parent | d68a895ee8e61b5c9d4ef368e7f04252e84649e9 (diff) | |
download | oslo-log-110191aa505cfefafee1c8579213b2f9c3397b6c.tar.gz |
Add Stein release to versionutils3.38.0
Now that we have a name we might as well add it to the list.
Change-Id: I45a1cfe0a64a58e7565299f761389d91add6a287
-rw-r--r-- | oslo_log/versionutils.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/oslo_log/versionutils.py b/oslo_log/versionutils.py index 054d71d..fc031de 100644 --- a/oslo_log/versionutils.py +++ b/oslo_log/versionutils.py @@ -71,6 +71,7 @@ _RELEASES = { 'P': 'Pike', 'Q': 'Queens', 'R': 'Rocky', + 'S': 'Stein', } @@ -146,6 +147,7 @@ class deprecated(object): PIKE = 'P' QUEENS = 'Q' ROCKY = 'R' + STEIN = 'S' def __init__(self, as_of, in_favor_of=None, remove_in=2, what=None): """Initialize decorator |