Skip to content

Commit 55f4efb

Browse files
committed
updated bigmath
1 parent 3dc9bc8 commit 55f4efb

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.12)
22
project(minter_tx
3-
VERSION 2.0.0
3+
VERSION 2.0.1
44
DESCRIPTION "Minter Transaction SDK for C++"
55
LANGUAGES CXX
66
)

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ naked Docker images.
6161
After installing package from repository, you can use cmake-find module to find library:
6262

6363
```cmake
64-
find_package(minter_tx 2.0.0 REQUIRED)
64+
find_package(minter_tx 2.0.1 REQUIRED)
6565
target_link_libraries(MY_PROJECT minter_tx::minter_tx)
6666
```
6767

@@ -106,7 +106,7 @@ For more information, see official [docs](https://docs.conan.io/en/latest/gettin
106106

107107
You can just add to your conanfile.txt dependency:
108108

109-
`minter_tx/2.0.0@minter/latest`
109+
`minter_tx/2.0.1@minter/latest`
110110

111111
CMakeLists.txt
112112

RELEASE.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Release notes
22

3+
## 2.0.1
4+
- Updated `bigmath` as it has major fix for windows builds
5+
36
## 2.0.0
47

58
- Added transactions:

conanfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class MinterTxConan(ConanFile):
5353
'bip39/2.1.1@edwardstock/latest',
5454
'secp256k1_java/1.0.0@edwardstock/latest',
5555
'toolbox/3.2.2@edwardstock/latest',
56-
'bigmath/1.0.2@edwardstock/latest'
56+
'bigmath/1.0.3@edwardstock/latest'
5757
)
5858

5959
build_requires = (

version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0
1+
2.0.1

0 commit comments

Comments
 (0)