From 045f2beab59bb5e92579617d325e5594d8ebc9f5 Mon Sep 17 00:00:00 2001 From: Fernando Pelliccioni Date: Fri, 15 Sep 2017 10:42:44 -0300 Subject: [PATCH] increment version --- .travis.yml | 2 +- CMakeLists.txt | 2 +- conanfile.py | 2 +- test_package/conanfile.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 94d7c2f681..e43269ec05 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,7 @@ branches: env: global: - - CONAN_REFERENCE: "secp256k1/0.1" + - CONAN_REFERENCE: "secp256k1/0.2" - CONAN_USERNAME: "bitprim" - CONAN_LOGIN_USERNAME: "bitprim-bintray" - CONAN_CHANNEL: "testing" diff --git a/CMakeLists.txt b/CMakeLists.txt index 0f49258826..c1366e8417 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ cmake_minimum_required(VERSION 3.4) # secp256k1 #============================================================================== project(secp256k1 - VERSION 0.1 + VERSION 0.2 LANGUAGES C) set_property(GLOBAL PROPERTY USE_FOLDERS ON) diff --git a/conanfile.py b/conanfile.py index a35cad5a56..c2f2d03992 100644 --- a/conanfile.py +++ b/conanfile.py @@ -25,7 +25,7 @@ def option_on_off(option): class Secp256k1Conan(ConanFile): name = "secp256k1" - version = "0.1" + version = "0.2" license = "http://www.boost.org/users/license.html" url = "https://github.com/bitprim/secp256k1" description = "Optimized C library for EC operations on curve secp256k1" diff --git a/test_package/conanfile.py b/test_package/conanfile.py index ce55c1f984..6fb8ed61eb 100644 --- a/test_package/conanfile.py +++ b/test_package/conanfile.py @@ -8,7 +8,7 @@ class Secp256k1TestConan(ConanFile): settings = "os", "compiler", "build_type", "arch" - requires = "secp256k1/0.1@%s/%s" % (username, channel) + requires = "secp256k1/0.2@%s/%s" % (username, channel) generators = "cmake" # build_policy = "missing"