Skip to content

Commit f9c5d13

Browse files
committed
typos
1 parent 7a2ece5 commit f9c5d13

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

.github/scripts/increment_version_test.py

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,17 @@
77
[
88
("0.0.0", 'patch', False, "0.0.1"),
99
("0.0.1", 'patch', False, "0.0.2"),
10-
("0.0.1a1", 'patch', False, "0.0.1"),
11-
("0.0.0", 'patch', True, "0.0.1a1"),
12-
("0.0.1", 'patch', True, "0.0.2a1"),
13-
("0.0.2a1", 'patch', True, "0.0.2a2"),
10+
("0.0.1b1", 'patch', False, "0.0.1"),
11+
("0.0.0", 'patch', True, "0.0.1b1"),
12+
("0.0.1", 'patch', True, "0.0.2b1"),
13+
("0.0.2b1", 'patch', True, "0.0.2b2"),
1414
("0.0.1", 'minor', False, "0.1.0"),
15-
("0.0.1a1", 'minor', False, "0.1.0"),
16-
("0.1.0a1", 'minor', False, "0.1.0"),
17-
("0.1.0", 'minor', True, "0.2.0a1"),
18-
("0.1.0a1", 'minor', True, "0.1.0a2"),
19-
("0.1.1a1", 'minor', True, "0.2.0a1"),
15+
("0.0.1b1", 'minor', False, "0.1.0"),
16+
("0.1.0b1", 'minor', False, "0.1.0"),
17+
("0.1.0", 'minor', True, "0.2.0b1"),
18+
("0.1.0b1", 'minor', True, "0.1.0b2"),
19+
("0.1.1b1", 'minor', True, "0.2.0b1"),
20+
("3.0.0b1", 'patch', True, "3.0.0b2"),
2021
]
2122
)
2223
def test_increment_version(source, inc_type, with_beta, result):

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
9494
git config --global user.email "robot@umbrella";
9595
git config --global user.name "robot";
96-
git commit -m "Release: $NEW_VERSION";
96+
git commit -m "Release: $TAG";
9797
9898
git tag "$TAG"
9999
git push && git push --tags

0 commit comments

Comments
 (0)