Skip to content

Commit 2349c92

Browse files
committed
Update version number to 11.7.0
1 parent 5aa4056 commit 2349c92

2 files changed

Lines changed: 11 additions & 5 deletions

File tree

.github/workflows/update-version-test.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,26 @@ jobs:
2323
- name: Update to version with a phase
2424
run: |
2525
./update_version.sh 12 1 0 beta1
26-
git tag --points-at HEAD > actual
26+
git diff
27+
git tag --points-at HEAD > actual
2728
echo v12.1.0-beta1 > expected
2829
diff expected actual
30+
rm -f expected actual
2931
3032
- name: Update to version without a phase
3133
run: |
3234
./update_version.sh 12 1 0
33-
git tag --points-at HEAD > actual
35+
git diff
36+
git tag --points-at HEAD > actual
3437
echo v12.1.0 > expected
3538
diff expected actual
39+
rm -f expected actual
3640
3741
- name: Update to version with a phase again
3842
run: |
3943
./update_version.sh 12 2 0 alpha1
40-
git tag --points-at HEAD > actual
44+
git diff
45+
git tag --points-at HEAD > actual
4146
echo v12.2.0-alpha1 > expected
4247
diff expected actual
48+
rm -f expected actual

pki.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ Name: pki
1616
# Downstream release number:
1717
# - development/stabilization (unsupported): 0.<n> where n >= 1
1818
# - GA/update (supported): <n> where n >= 1
19-
%global release_number 0.1
19+
%global release_number 1
2020

2121
# Development phase:
2222
# - development (unsupported): alpha<n> where n >= 1
2323
# - stabilization (unsupported): beta<n> where n >= 1
2424
# - GA/update (supported): <none>
25-
%global phase beta2
25+
%undefine phase
2626

2727
%undefine timestamp
2828
%undefine commit_id

0 commit comments

Comments
 (0)