Skip to content

Commit

Permalink
Upgrade to latest version of data
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielKrawisz committed Mar 30, 2023
1 parent aac9d67 commit 2194d27
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@
from conan.tools.cmake import CMakeToolchain, CMake, cmake_layout, CMakeDeps
from os import environ


class GigamonkeyConan(ConanFile):
class GigamonkeyConan (ConanFile):
name = "gigamonkey"
version = "v0.0.13"
version = "v0.0.14"
license = "Open BSV"
author = "Daniel Krawisz"
url = "https://github.com/Gigamonkey-BSV/Gigamonkey"
Expand All @@ -15,7 +14,7 @@ class GigamonkeyConan(ConanFile):
options = {"shared": [True, False], "fPIC": [True, False]}
default_options = {"shared": False, "fPIC": True}
exports_sources = "CMakeLists.txt", "include/*", "src/*", "test/*"
requires = "boost/1.80.0", "openssl/1.1.1t", "cryptopp/8.5.0", "nlohmann_json/3.10.0", "gmp/6.2.1", "secp256k1/0.3@proofofwork/stable", "data/v0.0.26@proofofwork/stable", "gtest/1.12.1"
requires = "boost/1.80.0", "openssl/1.1.1t", "cryptopp/8.5.0", "nlohmann_json/3.10.0", "gmp/6.2.1", "secp256k1/0.3@proofofwork/stable", "data/v0.0.24@proofofwork/stable", "gtest/1.12.1"

def set_version (self):
if "CIRCLE_TAG" in environ:
Expand Down

0 comments on commit 2194d27

Please sign in to comment.