Skip to content

Commit

Permalink
asio-grpc: Update 3.1.0 to 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Tradias committed Sep 16, 2024
1 parent fba5fba commit 2916665
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions recipes/asio-grpc/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sources:
"3.1.0":
url: "https://github.com/Tradias/asio-grpc/archive/refs/tags/v3.1.0.tar.gz"
sha256: "b5d9440dad653dcb9e5ac82cb9c4f6d01a33bc30bba996d9647f38258cbe75ee"
"3.2.0":
url: "https://github.com/Tradias/asio-grpc/archive/refs/tags/v3.2.0.tar.gz"
sha256: "f281e84202cf75aae055d67c4200b794f240cd7bd9ff8ecc3f9670a8912edf4f"
"2.9.2":
url: "https://github.com/Tradias/asio-grpc/archive/refs/tags/v2.9.2.tar.gz"
sha256: "a025587278b3332f4c5dd0464b3d5313fbecb89fc58a6ec1d611f693d6b51ef2"
Expand Down
4 changes: 2 additions & 2 deletions recipes/asio-grpc/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ def requirements(self):
use_latest = Version(self.version) > "2.8"
self.requires("grpc/1.54.3", transitive_headers=True, transitive_libs=True)
if (self.options.get_safe("local_allocator") == "boost_container" and Version(self.version) < "3.0.0") or self.options.backend == "boost":
version = "1.85.0" if use_latest else "1.83.0"
version = "1.86.0" if use_latest else "1.83.0"
self.requires(f"boost/{version}", transitive_headers=True)
if self.options.backend == "asio":
version = "1.30.2" if use_latest else "1.29.0"
version = "1.31.0" if use_latest else "1.29.0"
self.requires(f"asio/{version}", transitive_headers=True)
if self.options.backend == "unifex":
self.requires("libunifex/0.4.0", transitive_headers=True, transitive_libs=True)
Expand Down
2 changes: 1 addition & 1 deletion recipes/asio-grpc/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
versions:
"3.1.0":
"3.2.0":
folder: all
"2.9.2":
folder: all
Expand Down

0 comments on commit 2916665

Please sign in to comment.