Skip to content

Commit 2d6d368

Browse files
authored
[CU-86er746nx] Release new version v7 (#74)
🍻 Release new version `v7`.
1 parent f5f6707 commit 2d6d368

File tree

3 files changed

+7
-11
lines changed

3 files changed

+7
-11
lines changed
Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,9 @@
11
### 🎉🎊 **New feature**
22
<hr>
33

4-
1. Improve the CI part about parsing and generating version info in reusable workflow.
5-
* as is:
6-
* previous release version value: only ``vx``, i.e., ``v6``.
7-
* to be:
8-
* latest release version value: ``vx`` or ``vx.x``, i.e., ``v6`` or ``v6.2``.
4+
1. Support verifying with Python versions `3.12` and `3.13`.
95

106
### 🛠⚙️ **Breaking Change**
117
<hr>
128

13-
1. Fix the CI issue about it cannot upload test coverage reports into Action Artifact because they all are hidden files.
14-
* The reusable workflows which would be effected:
15-
* _rw_run_test.yaml_
16-
* _rw_poetry_run_test.yaml_
17-
* _rw_organize_test_cov_reports.yaml_
9+
1. Deprecated and won't support verifying with Python versions `3.6` to `3.8`.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v6.1.0 🍻🍾 - Fix broken reusable workflow.
1+
v7.0.0 🍻🍾 - Support verifying with Python versions `3.12`, `3.13`.

.github/workflows/rw_build_git-tag_and_create_github-release.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,12 @@ jobs:
100100
id: github_action_reusable_workflow_release
101101
run: |
102102
release_info=$(bash ./scripts/ci/generate_release_info.sh ${{ inputs.project_type }} ${{ inputs.debug_mode }})
103+
<<<<<<< HEAD
103104
echo "🧾 release_info: $release_info"
104105
release_version=$(echo "$release_info" | grep -E "Target version which would be pass to deployment process: (([0-9]{1,}\.{0,1}[0-9]{0,}\.{0,1}[0-9]{0,})|(Pre\-Release))" | grep -E -o "(([0-9]{1,}\.{0,1}[0-9]{0,}\.{0,1}[0-9]{0,})|(Pre\-Release))")
106+
=======
107+
release_version=$(echo "$release_info" | grep -E "Target version which would be pass to deployment process: ([0-9]{1,}\.{0,1}[0-9]{0,}\.{0,1}[0-9]{0,})|(Pre\-Release))" | grep -E -o "(([0-9]{1,}\.{0,1}[0-9]{0,}\.{0,1}[0-9]{0,})|(Pre\-Release))")
108+
>>>>>>> 31b852d (Merge pull request #68 from Chisanan232/develop)
105109
echo "🤖 Release Version: $release_version"
106110

107111
echo "release_version=$(echo $release_version)" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)