From 5553ebf6cd4b433450c1768b34bd5cd8f63c3f48 Mon Sep 17 00:00:00 2001 From: Fernando pelliccioni Date: Sat, 30 Sep 2017 10:28:18 -0300 Subject: [PATCH] 0.3 version --- .appveyor.yml | 2 +- .gitignore | 2 ++ .travis.yml | 2 +- CMakeLists.txt | 2 +- conanfile.py | 2 +- test_package/conanfile.py | 2 +- 6 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 1f2bd53ab1..18fc957cb3 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -29,7 +29,7 @@ environment: PYTHON_VERSION: "2.7.8" PYTHON_ARCH: "32" - CONAN_REFERENCE: "secp256k1/0.2" + CONAN_REFERENCE: "secp256k1/0.3" CONAN_USERNAME: "bitprim" CONAN_LOGIN_USERNAME: "bitprim-bintray" CONAN_CHANNEL: "testing" diff --git a/.gitignore b/.gitignore index bdb2b160f4..7a94b7a1b4 100644 --- a/.gitignore +++ b/.gitignore @@ -57,3 +57,5 @@ CMakeSettings.json /.vs/secp256k1/v15/Browse.VC.opendb /.vs/ProjectSettings.json /.vs/slnx.sqlite + +.vscode/ \ No newline at end of file diff --git a/.travis.yml b/.travis.yml index e43269ec05..0cd4d40743 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,7 @@ branches: env: global: - - CONAN_REFERENCE: "secp256k1/0.2" + - CONAN_REFERENCE: "secp256k1/0.3" - CONAN_USERNAME: "bitprim" - CONAN_LOGIN_USERNAME: "bitprim-bintray" - CONAN_CHANNEL: "testing" diff --git a/CMakeLists.txt b/CMakeLists.txt index be08554336..1565017a9a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ cmake_minimum_required(VERSION 3.4) # secp256k1 #============================================================================== project(secp256k1 - VERSION 0.2 + VERSION 0.3 LANGUAGES C) set_property(GLOBAL PROPERTY USE_FOLDERS ON) diff --git a/conanfile.py b/conanfile.py index 30bdfd5b4a..2959d07dd6 100644 --- a/conanfile.py +++ b/conanfile.py @@ -25,7 +25,7 @@ def option_on_off(option): class Secp256k1Conan(ConanFile): name = "secp256k1" - version = "0.2" + version = "0.3" 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 6fb8ed61eb..0b03dfa007 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.2@%s/%s" % (username, channel) + requires = "secp256k1/0.3@%s/%s" % (username, channel) generators = "cmake" # build_policy = "missing"