Skip to content

Commit

Permalink
Merge pull request #34 from vi7/fix_ci
Browse files Browse the repository at this point in the history
CI: fix semver regex
  • Loading branch information
vi7 authored May 16, 2022
2 parents 0e5ea05 + 53adb91 commit 12783ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ workflows:
filters:
# Tag triggers are ignored by default and must be enabled explicitly
tags:
only: /^v\d\.\d\.\d$/
only: /^v(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$/
- release:
requires:
- client_test
filters:
tags:
only: /^v\d\.\d\.\d$/
only: /^v(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$/
branches:
ignore: /.*/
4 changes: 2 additions & 2 deletions include/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
#ifndef VERSION_H
#define VERSION_H

#define VERSION "0.12.1"
#define VERSION "0.12.2"

#endif
#endif

0 comments on commit 12783ba

Please sign in to comment.