Jia Yue Hua
|
5d2ff76011
|
[prometheus-cpp] update to 1.2.4 (#37709)
|
2024-03-26 11:49:40 -07:00 |
|
Gregor Jasny
|
d1acf433d8
|
[prometheus-cpp] Update to version 1.1.0 (#27780)
|
2022-11-14 14:30:49 -08:00 |
|
Gregor Jasny
|
f8b8096912
|
[prometheus-cpp] Update to version 1.0.1 (#24862)
|
2022-05-23 13:42:39 -07:00 |
|
Gregor Jasny
|
989e2c5021
|
[prometheus-cpp] Update to version 1.0.0 (#21500)
|
2021-11-18 20:19:38 -08:00 |
|
Gregor Jasny
|
b819a29dab
|
[prometheus-cpp] Update to version 0.13.0 (#20077)
|
2021-09-13 20:21:41 -07:00 |
|
Billy O'Neal
|
b295670e4b
|
Bulk convert control files. (#19986)
```
function Convert-Control {
Param($full)
.\vcpkg.exe format-manifest $full
$root = $full.Substring(0, $full.Length - 7) # CONTROL
$new = $root + 'vcpkg.json'
$content = Get-Content -Raw $new
$asJson = ConvertFrom-Json $content -AsHashtable -Depth 100
$oldVersion = $asJson['port-version']
if ($null -eq $oldVersion) {
$oldVersionFull = $asJson['version-string']
Write-Host "Got version $oldVersionFull"
$match = [System.Text.RegularExpressions.Regex]::Match($oldVersionFull, '^(.+)-(\d+)$')
if ($match.Success -and -not [System.Text.RegularExpressions.Regex]::IsMatch($oldVersionFull, '^\d\d\d\d-\d\d-\d\d$')) {
$newFullVersion = [string]$match.Groups[1].Value
$oldVersion = [int]$match.Groups[2].Value
Write-Host "newFullVersion $newFullVersion oldVersion $oldVersion"
$newVersion = $oldVersion + 1
$asJson['version-string'] = $newFullVersion
Write-Host "Previous version for $full extracted from version field -- setting version-string $newFullVersion and port-version $newVersion"
} else {
Write-Host "No previous version for $full -- setting 1"
$newVersion = 1
}
} else {
$newVersion = [int]$oldVersion + 1
Write-Host "New version for $full : $newVersion"
}
$asJson['port-version'] = $newVersion
$content = ConvertTo-Json $asJson -Depth 100
Set-Content -Path $new -Value $content
.\vcpkg.exe format-manifest $new
}
Get-ChildItem ports\CONTROL -Recurse | Foreach-Object {
Convert-Control $_.FullName
}
git commit -am "this message"
.\vcpkg.exe x-add-version -all
git commit -a --amend
```
|
2021-09-09 01:24:04 -07:00 |
|
Gregor Jasny
|
6fbb26ecdb
|
[prometheus-cpp] Update to version 0.12.3 (#17765)
Update prometheus-cpp to `0.12.2`. Locally tested all the features on macOS.
|
2021-05-13 13:18:02 -07:00 |
|
Gregor Jasny
|
fced4bef16
|
[prometheus-cpp] Update to version 0.12.2 (#16643)
* [prometheus-cpp] Update to version 0.12.2
* update version
Co-authored-by: Jonliu1993 <13720414433@163.com>
|
2021-03-15 11:29:47 -07:00 |
|
Gregor Jasny
|
33f1f0a34d
|
[prometheus-cpp] Update to version 0.12.1 (#16057)
* [prometheus-cpp] Update to version 0.12.1
* update version
Co-authored-by: Jonliu1993 <13720414433@163.com>
|
2021-02-11 00:30:31 -08:00 |
|
nicole mazzuca
|
68a74950d0
|
[vcpkg] Rename port_versions to versions (#15784)
|
2021-01-21 09:53:22 -08:00 |
|