File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 2
2
heeding the Versioning Strategy (see
3
3
https://ncas-cms.github.io/cf-python/releases.html#versioning-strategy ).
4
4
5
+ * Set the ` NEXTVERSION ` version marker across the codebase (added in PRs
6
+ to mark the next version where the exact number/name is not yet decided)
7
+ by recursively finding all occurences within the ` cf ` directory and replacing
8
+ them with the upcoming version name ` X.Y.Z ` (replace ` X ` , ` Y ` and ` Z ` with
9
+ appropriate numbers), via running this command in ` cf-python ` repo root
10
+ directory (don't run it repo-wide or it will e.g. edit this script!):
11
+
12
+ ``` console
13
+ $ find cf/ -type f | xargs sed -i 's/NEXTVERSION/X.Y.Z/g'
14
+ ```
15
+
5
16
* Change the version and date in ` cf/__init__.py ` (` __version__ ` and
6
17
` __date__ ` variables)
7
18
You can’t perform that action at this time.
0 commit comments