Skip to content

Commit

Permalink
[azure-core-cpp] Don't refer to versions of curl that don't exist. (m…
Browse files Browse the repository at this point in the history
…icrosoft#33109)

There's a "version>=" against a version of curl that does not exist in the version database. This causes customers that use versioning with Azure components to fail to resolve a version; versions need to be in the version database for us to be able to compare them.
  • Loading branch information
BillyONeal authored Aug 11, 2023
1 parent 7247446 commit 9434026
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ports/azure-core-cpp/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "azure-core-cpp",
"version-semver": "1.10.2",
"port-version": 1,
"description": [
"Microsoft Azure Core SDK for C++",
"This library provides shared primitives, abstractions, and helpers for modern Azure SDK client libraries written in the C++."
Expand Down Expand Up @@ -38,7 +39,7 @@
"features": [
"ssl"
],
"version>=": "7.44"
"version>=": "7.48"
}
]
},
Expand Down
5 changes: 5 additions & 0 deletions versions/a-/azure-core-cpp.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "bfb8b85899d4e6783f93392104d7ee80c8d0a89c",
"version-semver": "1.10.2",
"port-version": 1
},
{
"git-tree": "d3a1b3382bddaf219a0fef6dafd6a31c43d28e02",
"version-semver": "1.10.2",
Expand Down
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@
},
"azure-core-cpp": {
"baseline": "1.10.2",
"port-version": 0
"port-version": 1
},
"azure-core-tracing-opentelemetry-cpp": {
"baseline": "1.0.0-beta.4",
Expand Down

0 comments on commit 9434026

Please sign in to comment.