Skip to content

Commit

Permalink
increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
fpelliccioni committed Sep 15, 2017
1 parent 7af78b3 commit 045f2be
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
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.1"
- CONAN_REFERENCE: "secp256k1/0.2"
- 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.1
VERSION 0.2
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.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"
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.1@%s/%s" % (username, channel)
requires = "secp256k1/0.2@%s/%s" % (username, channel)
generators = "cmake"
# build_policy = "missing"

Expand Down

0 comments on commit 045f2be

Please sign in to comment.