File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -22,15 +22,15 @@ n_commits_to_merge_base=$(git rev-list --count "${merge_base}".."${current_commi
22
22
23
23
# NOTE:
24
24
# - we develop using post-release versioning
25
- # - i.e. 1.2.3.post3 .devN where N is the number of commits with respect to last release 1.2.3)
25
+ # - i.e. 1.2.3.post0 .devN where N is the number of commits with respect to last release 1.2.3)
26
26
# - Another approach would be using a pre-release version but we do not want to decide on that version
27
27
# - the releases are of the type 1.2.3
28
28
# - we never do post releases as 1.2.3.postX but instead use patches i.e. 1.2.4
29
29
# - the releases are defined using git tags (that is the case with n_commits_to_merge_base=0 )
30
30
# - SEE .github/workflows/publish-python-client.yml for more details
31
31
#
32
32
if [ " $n_commits_to_merge_base " -gt 0 ]; then
33
- echo " ${released_version} .post3 .dev${n_commits_to_merge_base} "
33
+ echo " ${released_version} .post0 .dev${n_commits_to_merge_base} "
34
34
elif [ " $n_commits_to_merge_base " -eq 0 ]; then
35
35
echo " ${released_version} "
36
36
else
You can’t perform that action at this time.
0 commit comments