aboutsummaryrefslogtreecommitdiff
path: root/ports/skyr-url
AgeCommit message (Collapse)Author
2021-09-09Bulk convert control files. (#19986)Billy O'Neal
``` 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 ```
2020-09-20[skyr-url] Changed version number to 1.13.0 (#13617)Glyn Matthews
2020-07-06[skyr-url] Changed version number to 1.12.0 (#12214)Glyn Matthews
2020-06-18[skyr-url] Updated version number of skyr-url (#11911)Glyn Matthews
* [skyr-url] Updated version number of skyr-url * Updated HEAD_REF value
2020-06-05[skyr-url] Changed version number for skyr-url (#11774)Glyn Matthews
2020-05-26[skyr-url] Changed version number to 1.9.0 (#11568)Glyn Matthews
2020-05-07[skyr-url] Update skyr-url to 1.7.5 (#11153)Glyn Matthews
* [skyr-url] Changed skyr-url version number to 1.7.5 * [skyr-url] Updated Git tag for fixes to CI breakages
2020-04-23[skyr-url] Updated port to use version 1.7.3 (#10954)Glyn Matthews
2020-04-21[skyr-url] Bump version to 1.7.0 (#10868)Glyn Matthews
* Updated version of skyr-url * Applied requested change for PR
2020-04-07Bumped version number of skyr-url because of fix to CI errorGlyn Matthews
2020-04-04[skyr-url] Fixed change to CMake optionsGlyn Matthews
2020-04-04Bumped version of skyr-url to 1.5.1Glyn Matthews
2020-04-03[skyr-url] Add new port (#10463)Glyn Matthews
* Added port for Skyr URL library * Removed vcpkg_test_cmake call in skyr-url port * Fixed type in version number, added step to copy PDBs * Added build dependency on tl-expected * Removed commented out code * Disabled warnings as errors * Bumped version number * Updated version number for Skyr URL