diff --git a/README.md b/README.md index 4f4ca01..6ec59f1 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.37.0 --update --deploy=direct_deploy +$ conan install --requires=kth/0.38.0 --update --deploy=direct_deploy ``` diff --git a/conan.lock b/conan.lock index e9ac3ec..b80375a 100644 --- a/conan.lock +++ b/conan.lock @@ -4,19 +4,19 @@ "zlib/1.2.13#e377bee636333ae348d51ca90874e353%1682597484.674", "spdlog/1.11.0#8b4bd1da26e0ec97698369d6224d93bf%1687229549.047", "secp256k1/0.17.0#7ccad3671360359af67ca3b6cbb0a4dc%1685530303.447", - "node/0.37.0#a264a9d595830cc72fe2d201c15c2267%1688925328.9670572", - "network/0.37.0#c1850ff14667040153c2781b847ec6c6%1688925023.0665731", + "node/0.38.0#34cba6eda098cdaf127c460f08823d11%1689006643.709136", + "network/0.37.0#c1850ff14667040153c2781b847ec6c6%1688930697.088", "lmdb/0.9.29#c277645fc26fc806a406b525c5845455%1666084222.748", "libbacktrace/cci.20210118#ec1aa63bbc10145c6a299e68e711670c%1676205469.545", - "infrastructure/0.28.0#7222aeb12bc487092b4dd77a89a52748%1688924478.0770862", + "infrastructure/0.28.0#7222aeb12bc487092b4dd77a89a52748%1688925478.95", "gmp/6.2.1#c0aec48648a7dff99f293870b95cad36%1688915593.79", "fmt/10.0.0#dd5e3eb81b512a1bb34a5aab88a07e82%1684225718.04", - "domain/0.30.0#28c8bfdebd60f9be65020639c5eed7aa%1688924865.4454918", - "database/0.34.0#041de2b5ea72b1c528674f23ce425ab5%1688925168.5580015", - "consensus/0.28.0#2fbc52651381f975859d55e915f2a6bf%1688924831.402418", + "domain/0.30.0#28c8bfdebd60f9be65020639c5eed7aa%1688929289.162", + "database/0.35.0#f0229d6036b2f407b1c8f7d8a661c1e3%1689006481.5267875", + "consensus/0.28.0#2fbc52651381f975859d55e915f2a6bf%1688925442.56", "bzip2/1.0.8#411fc05e80d47a89045edc1ee6f23c1d%1678293522.814", "boost/1.82.0#902463606663219fc8c6d2102f1b8c6a%1688924872.066", - "blockchain/0.32.0#24ab49c08f4f7ab9f13a16c6225dc986%1688925229.527154" + "blockchain/0.33.0#b8b03e0b30bc417ddadf9e68baa35235%1689006542.1506388" ], "build_requires": [ "m4/1.4.19#c1c4b1ee919e34630bb9b50046253d3c%1676610086.39", diff --git a/conanfile.py b/conanfile.py index 87c18a3..f864a78 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.37.0", transitive_headers=True, transitive_libs=True) + self.requires("node/0.38.0", transitive_headers=True, transitive_libs=True) def validate(self): KnuthConanFileV2.validate(self)