Skip to content

Commit

Permalink
(#14981) uwebsockets: add version 20.36.0
Browse files Browse the repository at this point in the history
* uwebsockets: add version 20.33.0

* update 20.36.0
  • Loading branch information
toge authored Jan 27, 2023
1 parent 9a0840a commit 81f6f1c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions recipes/uwebsockets/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
sources:
"20.36.0":
url: "https://github.com/uNetworking/uWebSockets/archive/v20.36.0.tar.gz"
sha256: "cda266f7ed6abe67ef3cae6e223a580fe5091db9156c1f4123ee328ae21511c9"
"20.17.0":
url: "https://github.com/uNetworking/uWebSockets/archive/v20.17.0.tar.gz"
sha256: "62027b0b847563bcc65a760045dc4233328229fc551f97fe5814e518e272141c"
Expand Down
4 changes: 3 additions & 1 deletion recipes/uwebsockets/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ def requirements(self):
if self.options.get_safe("with_libdeflate"):
self.requires("libdeflate/1.14")

if Version(self.version) >= "20.15.0":
if Version(self.version) > "20.17.0":
self.requires("usockets/0.8.5")
elif Version(self.version) >= "20.15.0":
self.requires("usockets/0.8.2")
elif Version(self.version) >= "19.0.0":
self.requires("usockets/0.8.1")
Expand Down
2 changes: 2 additions & 0 deletions recipes/uwebsockets/config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
versions:
"20.36.0":
folder: all
"20.17.0":
folder: all
"20.14.0":
Expand Down

0 comments on commit 81f6f1c

Please sign in to comment.