diff --git a/README.md b/README.md index 2f7c09a..572f1e1 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.43.0 --update --deploy=direct_deploy +$ conan install --requires=kth/0.44.0 --update --deploy=direct_deploy ``` diff --git a/conan.lock b/conan.lock index ab43aeb..1c803d8 100644 --- a/conan.lock +++ b/conan.lock @@ -4,7 +4,7 @@ "zlib/1.2.13#e377bee636333ae348d51ca90874e353%1682597484.674", "spdlog/1.14.1#972bbf70be1da4bc57ea589af0efde03%1714610543.14", "secp256k1/0.18.0#c2e7e05855c71cb8f4e350a7aa10bfa9%1698921631.178", - "node/0.43.0#aa04533d4ab312d702df38bcb875b25b%1716311118.0361414", + "node/0.44.0#e22ec261cf28b4d415f65ce766873e54%1716827728.1997921", "network/0.42.0#6e885dcb9c7a849f7b575337c96145f8%1716308362.441", "lmdb/0.9.32#a9b704c2cb978c03eea680da55f26f8e%1715166447.685", "libbacktrace/cci.20210118#ec1aa63bbc10145c6a299e68e711670c%1676205469.545", @@ -13,12 +13,12 @@ "fmt/10.2.1#9199a7a0611866dea5c8849a77467b25%1704415120.216", "expected-lite/0.6.3#262026767cf9d5ab1fdccb25c9bdbac2%1692807329.641", "domain/0.35.0#31e3c025ecabc5e2d2497315f406edb5%1716307558.582", - "database/0.40.0#66089526ba08f2504be2ff9368455854%1716308565.049", + "database/0.41.0#324d4649f7d82d4e7a6489cb0910cf10%1716826659.189", "ctre/3.9.0#318a83b26476a59466795daac928f3ec%1715925273.754", "consensus/0.31.0#d920af2ad2c3cfc8b267a4b59e97caa7%1716304670.907", "bzip2/1.0.8#411fc05e80d47a89045edc1ee6f23c1d%1678293522.814", "boost/1.85.0#7926babdab0a9779cc164d0af6c28d5e%1715614149.259", - "blockchain/0.38.0#3782ac84116af2ba5c6d3e991a883cba%1716310894.303" + "blockchain/0.39.0#8466121b1eab8e8081878ff53b8d8bc9%1716827432.986" ], "build_requires": [ "m4/1.4.19#c1c4b1ee919e34630bb9b50046253d3c%1676610086.39", diff --git a/conanfile.py b/conanfile.py index 4557e4f..85a3861 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.43.0", transitive_headers=True, transitive_libs=True) + self.requires("node/0.44.0", transitive_headers=True, transitive_libs=True) def validate(self): KnuthConanFileV2.validate(self)