forked from isce-framework/isce2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release_history.py
executable file
·62 lines (53 loc) · 2.71 KB
/
release_history.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python3
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Copyright 2013 California Institute of Technology. ALL RIGHTS RESERVED.
#
# 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 a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# United States Government Sponsorship acknowledged. This software is subject to
# U.S. export control laws and regulations and has been classified as 'EAR99 NLR'
# (No [Export] License Required except when exporting to an embargoed country,
# end user, or in support of a prohibited end use). By downloading this software,
# the user agrees to comply with all applicable U.S. export laws and regulations.
# The user has the responsibility to obtain export licenses, or other export
# authority as may be required before exporting this software to any 'EAR99'
# embargoed foreign country or citizen of those countries.
#
# Author: Eric Gurrola
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
import collections
Tag = collections.namedtuple('Tag', 'version svn_revision yyyymmdd')
releases = (Tag('1.0.0', '739', '20120814'),
Tag('1.5.0', '1180', '20131018'),
Tag('1.5.01', '1191', '20131028'),
Tag('2.0.0', '1554', '20140724'),
Tag('2.0.0_201409', '1612', '20140918'),
Tag('2.0.0_201410', '1651', '20141103'),
Tag('2.0.0_201505', '1733', '20150504'),
Tag('2.0.0_201506', '1783', '20150619'),
Tag('2.0.0_201511', '1917', '20151123'),
Tag('2.0.0_201512', '1931', '20151221'),
Tag('2.0.0_201604', '2047', '20160426'),
Tag('2.0.0_201604_dempatch', '2118:2047', '20160727'),
Tag('2.0.0_201609', '2143', '20160903'),
Tag('2.0.0_20160906', '2145', '20160906'),
Tag('2.0.0_20160908', '2150', '20160908'),
Tag('2.0.0_20160912', '2153', '20160912'),
Tag('2.0.0_20170403', '2256', '20170403'),
Tag('2.1.0', '2366', '20170806'),
Tag('2.2.0', '2497', '20180714'),
Tag('2.2.1', '2517', '20181221'),
Tag('2.3', '2531', '20190112'))
release_version = releases[-1].version
release_svn_revision = releases[-1].svn_revision
release_date = releases[-1].yyyymmdd