Skip to content

Commit 0a46355

Browse files
author
Igor Stepin
committed
Skip: minor improvements
1 parent 4d13406 commit 0a46355

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Git Parse Commits
2-
[![GitHub release](https://img.shields.io/github/release/stepin/git-parse-commits.svg)](https://github.com/stepin/git-parse-commits/releases) [![Build status](https://img.shields.io/github/actions/workflow/status/stepin/git-parse-commits/main.yml)](https://github.com/stepin/git-parse-commits/actions/workflows/main.yml) [![github license badge](https://img.shields.io/github/license/stepin/git-parse-commits)](https://github.com/stepin/git-parse-commits)
2+
[![GitHub release](https://img.shields.io/github/release/stepin/git-parse-commits.svg)](https://github.com/stepin/git-parse-commits/releases) [![github license badge](https://img.shields.io/github/license/stepin/git-parse-commits)](https://github.com/stepin/git-parse-commits)
33

44
This script is to be used in CICD pipelines to provide new version number
55
(bases on commit messages) and releses notes (also bases on commit messages).

git-parse-commits

+3-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,9 @@ def current_version_command(
145145
else:
146146
print(version)
147147

148-
SHA_REGEXP = re.compile('^[0-9a-f]{5,40}$')
148+
149+
SHA_REGEXP = re.compile("^[0-9a-f]{5,40}$")
150+
149151

150152
def last_release_version(
151153
tag_prefix: Optional[str],

0 commit comments

Comments
 (0)