Skip to content

Commit

Permalink
Merge branch 'release/v1.5' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
quvox committed Nov 26, 2019
2 parents 44f0301 + f0cabb1 commit 731e1d4
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 10 deletions.
5 changes: 0 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,6 @@ jobs:
pytest test_pending_request.py
pytest test_bbc_ping.py
pytest test_bbc_stats.py
cd compat
pytest test_bbc_app_multi_core_many_transactions_bson.py
pytest test_bbc_app_multiclient_traverse_bson.py
pytest test_bbc_app_multi_core_compat.py
pytest test_bbclib_bson.py
- save_cache:
key: v1-dependency-cache-{{ checksum "setup.py" }}
paths:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Change log
======

## v1.5
* Support BBcAssetRaw and BBcAssetHash defined in py-bbclib v1.5 or later
* bug fix

## v1.4
* Decouple bbclib from bbc1/core
* import py-bbclib
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ Some documents are available in docs/.
* [how_to_use_in_nat_environment.md](docs/how_to_use_in_nat_environment.md)
* [libbbcsig_dll_build_for_Windows_x64_ja.md](docs/libbbcsig_dll_build_for_Windows_x64_ja.md)
* Programing
* [BBc1_pybbclib_programming_guide_v1.6_ja.md](https://github.com/beyond-blockchain/py-bbclib/blob/develop/docs/BBc1_pybbclib_programming_guide_v1.6_ja.md)
* [BBc1_pybbclib_utility_functions_v1.6_ja.md](https://github.com/beyond-blockchain/py-bbclib/blob/develop/docs/BBc1_pybbclib_utility_functions_v1.6_ja.md)
* [BBc1_pybbclib_programming_guide_v1.4.1_ja.md](docs/BBc1_pybbclib_programming_guide_v1.4.1_ja.md)
* [BBc1_programming_guide_v1.3_ja.md](docs/BBc1_programming_guide_v1.3_ja.md)
* [BBc1_core_tutorial_file_proof_ja.md](docs/BBc1_core_tutorial_file_proof_ja.md)
Expand Down
4 changes: 3 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Disabling cache and re-installing the module is another solution, which is easie
```bash
python3 -mvenv venv
. venv/bin/activate
pip --no-cache-dir install -I bbc1
pip --no-cache-dir install -I bbc1
```


Expand Down Expand Up @@ -96,6 +96,8 @@ Some documents are available in docs/.
* [how_to_use_in_nat_environment.md](docs/how_to_use_in_nat_environment.md)
* [libbbcsig_dll_build_for_Windows_x64_ja.md](docs/libbbcsig_dll_build_for_Windows_x64_ja.md)
* Programing
* [BBc1_pybbclib_programming_guide_v1.6_ja.md](https://github.com/beyond-blockchain/py-bbclib/blob/develop/docs/BBc1_pybbclib_programming_guide_v1.6_ja.md)
* [BBc1_pybbclib_utility_functions_v1.6_ja.md](https://github.com/beyond-blockchain/py-bbclib/blob/develop/docs/BBc1_pybbclib_utility_functions_v1.6_ja.md)
* [BBc1_pybbclib_programming_guide_v1.4.1_ja.md](docs/BBc1_pybbclib_programming_guide_v1.4.1_ja.md)
* [BBc1_programming_guide_v1.3_ja.md](docs/BBc1_programming_guide_v1.3_ja.md)
* [BBc1_core_tutorial_file_proof_ja.md](docs/BBc1_core_tutorial_file_proof_ja.md)
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requests>=2.12.4
gevent>=1.2.1
greenlet
cryptography>=2.1.4
pytest<=3.2.*,>=3.0.5
pytest>=5.3.0
py-bbclib>=1.6
msgpack-python>=0.4.8
mysql-connector-python>=8.0.5
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools import setup
from setuptools.command.install import install

VERSION = "1.4"
VERSION = "1.5"

here = path.abspath(path.dirname(__file__))

Expand Down Expand Up @@ -45,10 +45,10 @@ def run(self):
'requests>=2.12.4',
'gevent>=1.2.1',
'cryptography>=2.1.4',
'pytest<=3.2.*,>=3.0.5',
'pytest>=5.3.0',
'msgpack-python>=0.4.8',
'mysql-connector-python>=8.0.5',
'py-bbclib>=1.4.1',
'py-bbclib>=1.6',
'greenlet',
'bson',
'Flask>=0.10.1,<=1.0.1'
Expand Down

0 comments on commit 731e1d4

Please sign in to comment.