Skip to content

Commit

Permalink
fix tag
Browse files Browse the repository at this point in the history
  • Loading branch information
pyama86 committed Oct 4, 2023
1 parent c0c0830 commit c8b6fa7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ BINSYMDIR=$(PREFIX)/local/bin/

CRITERION_VERSION=2.4.2
SHUNIT_VERSION=2.1.8
CURL_VERSION=8.1.2
OPENSSL_VERSION=3.1.3
CURL_VERSION_TAG=8_1_2
CURL_VERSION=$(shell echo $(CURL_VERSION_TAG) | sed -e 's/_/./g')
OPENSSL_VERSION=3.1.1
ZLIB_VERSION=1.3

DIST ?= unknown
Expand Down
8 changes: 4 additions & 4 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"enabled": false
},
{
"datasources": ["github-tags"],
"matchDepNames": ["curl/curl"],
"versioning": "regex:curl-(?<major>\\d+)\\_(?<minor>\\d+)\\_(?<patch>\\d+)$"
"datasources": ["github-tags"],
"matchDepNames": ["curl/curl"],
"versioning": "regex:(?<major>\\d+)\\_(?<minor>\\d+)\\_(?<patch>\\d+)$"
}
],
"customManagers": [
Expand All @@ -24,7 +24,7 @@
"fileMatch": [
"^Makefile$"
],
"matchStrings": ["CURL_VERSION=(?<currentValue>.+)"],
"matchStrings": ["CURL_VERSION_TAG=(?<currentValue>.+)"],
"datasourceTemplate": "github-tags",
"depNameTemplate": "curl/curl",
"extractVersionTemplate": "^curl-(?<version>.+)$"
Expand Down

0 comments on commit c8b6fa7

Please sign in to comment.