-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
per #2562, update Release Guide to include instructions for updating …
…the component versions lookup table in the METplus repository
- Loading branch information
1 parent
57c2a8c
commit f12e3b9
Showing
10 changed files
with
92 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
docs/Release_Guide/release_steps/metplus/add_next_version_to_lookup.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
Add Next Version to Lookup Table | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
In the develop branch, modify the **metplus/component_versions.py** file to | ||
add an entry for the next coordinated release. | ||
|
||
If the X.0 release was just created, add an entry for the X.1 release. | ||
|
||
If the X.1 release was just created, add an entry for the X+1.0 release. | ||
|
||
Set the appropriate X.Y.0 versions for each component. | ||
Maybe sure to set the Z number to 0. | ||
|
||
Set the version for metexpress to None (not a string). | ||
|
||
For example, if the coordinated 6.0 release was just created, add:: | ||
|
||
'6.1': { | ||
'metplus': '6.1.0', | ||
'met': '12.1.0', | ||
'metplotpy': '3.1.0', | ||
'metcalcpy': '3.1.0', | ||
'metdataio': '3.1.0', | ||
'metviewer': '6.1.0', | ||
'metexpress': None, | ||
}, | ||
|
||
For example, if the coordinated 6.1 release was just created, add:: | ||
|
||
'7.0': { | ||
'metplus': '7.0.0', | ||
'met': '13.0.0', | ||
'metplotpy': '4.0.0', | ||
'metcalcpy': '4.0.0', | ||
'metdataio': '4.0.0', | ||
'metviewer': '7.0.0', | ||
'metexpress': None, | ||
}, |
46 changes: 46 additions & 0 deletions
46
docs/Release_Guide/release_steps/update_version_lookup.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
Update Version Lookup Table | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
Modify the version lookup table in the METplus repository to include the | ||
correct version. | ||
|
||
.. dropdown:: Instructions | ||
|
||
* Clone the METplus repository. | ||
|
||
Using SSH: | ||
|
||
.. parsed-literal:: | ||
git clone [email protected]:dtcenter/METplus | ||
Using HTTP: | ||
|
||
.. parsed-literal:: | ||
git clone https://github.com/dtcenter/METplus | ||
* Enter the METplus repository directory: | ||
|
||
.. parsed-literal:: | ||
cd METplus | ||
* Checkout the develop branch | ||
|
||
.. parsed-literal:: | ||
git checkout develop | ||
* Create a branch off of develop to update. | ||
Include the name of the repository and version in the name. | ||
|
||
.. parsed-literal:: | ||
git checkout -b update_version_|projectRepo|_vX.Y.Z | ||
* Open **metplus/component_versions.py** and increment the version for the | ||
appropriate |projectRepo| entry. | ||
|
||
* Commit change, push to GitHub, and create a pull request to merge change | ||
into the **develop** branch. |