Skip to content

Commit

Permalink
upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
fpelliccioni committed Jun 14, 2023
1 parent a46a967 commit 0c9388b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $ conan config install https://github.com/k-nuth/ci-utils/raw/master/conan/confi
2. Install the appropriate library:

```
$ conan install --requires=blockchain/0.30.0 --update
$ conan install --requires=blockchain/0.31.0 --update
```

For more more detailed instructions, please refer to our [documentation](https://kth.cash/docs/).
Expand Down
10 changes: 5 additions & 5 deletions conan.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
"secp256k1/0.17.0#7ccad3671360359af67ca3b6cbb0a4dc%1685530303.447",
"lmdb/0.9.29#c277645fc26fc806a406b525c5845455%1666084222.748",
"libbacktrace/cci.20210118#ec1aa63bbc10145c6a299e68e711670c%1676205469.545",
"infrastructure/0.26.0#899c4c3ae8528778ee6fef296c16a352%1685531584.046",
"infrastructure/0.27.0#a9519ecb1490c5367c2ce3f44f0a1955%1686752009.507",
"gmp/6.2.1#c0aec48648a7dff99f293870b95cad36%1678897585.752",
"fmt/9.1.0#44302d39c5a4bf7de8a39adc50bb4568%1684225717.781",
"domain/0.28.0#dae78416b7748466178bbdedf32957bb%1685533123.075",
"database/0.32.0#867310da2e043c113067de66550f351c%1685533591.7813601",
"consensus/0.26.0#640e9656bc68d880d39335fe9ee83a65%1685530866.7525296",
"domain/0.29.0#12a53c175bd8778fad3e800de9469eaa%1686778644.652",
"database/0.33.0#248769673f0ec327c73ded800fccaa7d%1686781180.7956295",
"consensus/0.27.0#70c81c570488b2f60ddd7ba0e78c2ac9%1686777625.414161",
"bzip2/1.0.8#411fc05e80d47a89045edc1ee6f23c1d%1678293522.814",
"boost/1.81.0#9bd7ae86a881631b6cc76590621e470b%1682803250.326"
"boost/1.82.0#902463606663219fc8c6d2102f1b8c6a%1685704970.086"
],
"build_requires": [
"m4/1.4.19#c1c4b1ee919e34630bb9b50046253d3c%1676610086.39",
Expand Down
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ def build_requirements(self):
self.test_requires("catch2/3.3.2")

def requirements(self):
self.requires("database/0.32.0", transitive_headers=True, transitive_libs=True)
self.requires("database/0.33.0", transitive_headers=True, transitive_libs=True)
if self.options.consensus:
self.requires("consensus/0.26.0", transitive_headers=True, transitive_libs=True)
self.requires("consensus/0.27.0", transitive_headers=True, transitive_libs=True)

def validate(self):
KnuthConanFileV2.validate(self)
Expand Down

0 comments on commit 0c9388b

Please sign in to comment.