Skip to content

Commit

Permalink
0.3 version
Browse files Browse the repository at this point in the history
  • Loading branch information
fpelliccioni committed Sep 30, 2017
1 parent 7cc8ea0 commit 5553ebf
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,5 @@ CMakeSettings.json
/.vs/secp256k1/v15/Browse.VC.opendb
/.vs/ProjectSettings.json
/.vs/slnx.sqlite

.vscode/
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion test_package/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit 5553ebf

Please sign in to comment.