<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vcpkg/ports/prometheus-cpp, branch master</title>
<subtitle>Forked from https://github.com/microsoft/vcpkg</subtitle>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/'/>
<entry>
<title>[prometheus-cpp] Update to version 0.13.0 (#20077)</title>
<updated>2021-09-14T03:21:41+00:00</updated>
<author>
<name>Gregor Jasny</name>
<email>gjasny@googlemail.com</email>
</author>
<published>2021-09-14T03:21:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=b819a29dabeb467da5fb7762d3dea781785c590b'/>
<id>b819a29dabeb467da5fb7762d3dea781785c590b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Bulk convert control files. (#19986)</title>
<updated>2021-09-09T08:24:04+00:00</updated>
<author>
<name>Billy O'Neal</name>
<email>bion@microsoft.com</email>
</author>
<published>2021-09-09T08:24:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=b295670e4bab14debe88d92cd5364b21ce26232c'/>
<id>b295670e4bab14debe88d92cd5364b21ce26232c</id>
<content type='text'>
```
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
```</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
```
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
```</pre>
</div>
</content>
</entry>
<entry>
<title>[prometheus-cpp] Update to version 0.12.3 (#17765)</title>
<updated>2021-05-13T20:18:02+00:00</updated>
<author>
<name>Gregor Jasny</name>
<email>gregor.jasny@logmein.com</email>
</author>
<published>2021-05-13T20:18:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=6fbb26ecdb84fe21989bc66eac82bfd5ba3f9bd8'/>
<id>6fbb26ecdb84fe21989bc66eac82bfd5ba3f9bd8</id>
<content type='text'>
Update prometheus-cpp to `0.12.2`. Locally tested all the features on macOS.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Update prometheus-cpp to `0.12.2`. Locally tested all the features on macOS.</pre>
</div>
</content>
</entry>
<entry>
<title>[prometheus-cpp] Update to version 0.12.2 (#16643)</title>
<updated>2021-03-15T18:29:47+00:00</updated>
<author>
<name>Gregor Jasny</name>
<email>gregor.jasny@logmein.com</email>
</author>
<published>2021-03-15T18:29:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=fced4bef1606260f110d74de1ae1975c2b9ac549'/>
<id>fced4bef1606260f110d74de1ae1975c2b9ac549</id>
<content type='text'>
* [prometheus-cpp] Update to version 0.12.2

* update version

Co-authored-by: Jonliu1993 &lt;13720414433@163.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [prometheus-cpp] Update to version 0.12.2

* update version

Co-authored-by: Jonliu1993 &lt;13720414433@163.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[prometheus-cpp] Update to version 0.12.1 (#16057)</title>
<updated>2021-02-11T08:30:31+00:00</updated>
<author>
<name>Gregor Jasny</name>
<email>gregor.jasny@logmein.com</email>
</author>
<published>2021-02-11T08:30:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=33f1f0a34dc40c5ad3ebf6be1705badbb93c90b6'/>
<id>33f1f0a34dc40c5ad3ebf6be1705badbb93c90b6</id>
<content type='text'>
* [prometheus-cpp] Update to version 0.12.1

* update version

Co-authored-by: Jonliu1993 &lt;13720414433@163.com&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* [prometheus-cpp] Update to version 0.12.1

* update version

Co-authored-by: Jonliu1993 &lt;13720414433@163.com&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>[prometheus-cpp] Update to version 0.11.0 (#14792)</title>
<updated>2020-11-30T18:43:22+00:00</updated>
<author>
<name>Gregor Jasny</name>
<email>gjasny@googlemail.com</email>
</author>
<published>2020-11-30T18:43:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=9202f7fa54e146774d2dabab44efe1c9cbb255e4'/>
<id>9202f7fa54e146774d2dabab44efe1c9cbb255e4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Delete use of vcpkg_test_cmake and vcpkg_common_functions. (#13065)</title>
<updated>2020-10-28T21:18:07+00:00</updated>
<author>
<name>Billy O'Neal</name>
<email>bion@microsoft.com</email>
</author>
<published>2020-10-28T21:18:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=09a647a5261e981cbbc8219292c838490ed0b06f'/>
<id>09a647a5261e981cbbc8219292c838490ed0b06f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[prometheus-cpp] Update to version 0.10.0 (#13847)</title>
<updated>2020-10-06T21:57:37+00:00</updated>
<author>
<name>Gregor Jasny</name>
<email>gjasny@googlemail.com</email>
</author>
<published>2020-10-06T21:57:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=25990eeccec1e74753a36aa715b2e25ff3341d29'/>
<id>25990eeccec1e74753a36aa715b2e25ff3341d29</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[prometheus-cpp] Update to version 0.9.0 (#10175)</title>
<updated>2020-02-25T22:24:30+00:00</updated>
<author>
<name>Gregor Jasny</name>
<email>gjasny@googlemail.com</email>
</author>
<published>2020-02-25T22:24:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=1d58bf5310bd217d7fd72565762b3872b2809079'/>
<id>1d58bf5310bd217d7fd72565762b3872b2809079</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[prometheus-cpp] Update to version 0.8.0</title>
<updated>2019-11-19T19:39:16+00:00</updated>
<author>
<name>Gregor Jasny</name>
<email>gjasny@googlemail.com</email>
</author>
<published>2019-11-19T19:39:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/vcpkg/commit/?id=ff3105d09c8514966dc85afe4b8e81cea609a252'/>
<id>ff3105d09c8514966dc85afe4b8e81cea609a252</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
