From f4030de0f487c054557d92f8b92d7a1004f75513 Mon Sep 17 00:00:00 2001 From: Fernando Pelliccioni Date: Mon, 13 Nov 2023 19:43:16 +0100 Subject: [PATCH] upgrade dependencies --- README.md | 2 +- conan.lock | 28 ---------------------------- conanfile.py | 2 +- 3 files changed, 2 insertions(+), 30 deletions(-) delete mode 100644 conan.lock diff --git a/README.md b/README.md index d5e2e40..68d236d 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ $ conan config install https://github.com/k-nuth/ci-utils/raw/master/conan/confi 2. Install the appropriate node executable: ``` -$ conan install --requires=kth/0.40.0 --update --deploy=direct_deploy +$ conan install --requires=kth/0.41.0 --update --deploy=direct_deploy ``` diff --git a/conan.lock b/conan.lock deleted file mode 100644 index f764199..0000000 --- a/conan.lock +++ /dev/null @@ -1,28 +0,0 @@ -{ - "version": "0.5", - "requires": [ - "zlib/1.2.13#e377bee636333ae348d51ca90874e353%1682597484.674", - "spdlog/1.12.0#0e390a2f5c3e96671d0857bc734e4731%1693277101.493", - "secp256k1/0.18.0#c2e7e05855c71cb8f4e350a7aa10bfa9%1698921631.178", - "node/0.40.0#1c84df0b8759486541a8227e4a0219f5%1699271043.1256108", - "network/0.39.0#926ff7c42a6b415da2e390e46f6feb3d%1699270423.238", - "lmdb/0.9.29#c277645fc26fc806a406b525c5845455%1666084222.748", - "libbacktrace/cci.20210118#ec1aa63bbc10145c6a299e68e711670c%1676205469.545", - "infrastructure/0.30.0#9a6085f1b3e4d5cc0154293d29c555a9%1699267211.293", - "gmp/6.3.0#df20ffb6d21c34d67704305bcd1dea9e%1698225617.026", - "fmt/10.1.1#cd63809a79574a2f9eb73ca35f16a243%1693230699.985", - "expected-lite/0.6.3#262026767cf9d5ab1fdccb25c9bdbac2%1692807329.641", - "domain/0.32.0#024dd33c772657fc1138178bf2bffaa8%1699268049.1", - "database/0.37.0#795a9e989e9c242884b4108f74b0a054%1699269909.651", - "ctre/3.8#b20dc94ec71df126170a4be9ca5e9486%1691461344.415", - "consensus/0.29.0#abb27b80c898257b8322d3b6136eb814%1698929073.1818688", - "bzip2/1.0.8#411fc05e80d47a89045edc1ee6f23c1d%1678293522.814", - "boost/1.83.0#f0c3932db7f65b606ed78357ecbdcbef%1692286008.562", - "blockchain/0.35.0#94dfbbef723d2789a944037c8715c9cd%1699270612.157" - ], - "build_requires": [ - "m4/1.4.19#c1c4b1ee919e34630bb9b50046253d3c%1676610086.39", - "b2/4.9.6#2e02945ad41739b8051247d14fe8297d%1679927934.674" - ], - "python_requires": [] -} \ No newline at end of file diff --git a/conanfile.py b/conanfile.py index cede7a3..90cd4e1 100644 --- a/conanfile.py +++ b/conanfile.py @@ -59,7 +59,7 @@ def dont_compile(self, options, settings): def requirements(self): if not self.options.no_compilation and self.settings.get_safe("compiler") is not None: - self.requires("node/0.40.0", transitive_headers=True, transitive_libs=True) + self.requires("node/0.41.0", transitive_headers=True, transitive_libs=True) def validate(self): KnuthConanFileV2.validate(self)