Skip to content

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alfakini committed Mar 14, 2019
1 parent 6a046b8 commit 7d6c7f0
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,5 @@ nosetests.xml
.mr.developer.cfg
.project
.pydevproject

.python-version
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ language: python
python:
- "2.7"
- "3.5"
- "3.7"
install:
- pip install -r requirements-development.txt
- pip install codeclimate-test-reporter
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# mercadobitcoin Log of Changes

## Version `0.6.0`

- Add support to XRP and ETH

## Version `0.5.0`

- MercadoBitcoin API V3
Expand Down
2 changes: 1 addition & 1 deletion mercadobitcoin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from mercadobitcoin.trade_api import TradeApi

__author__ = "alfakini"
__version__ = "0.5.0"
__version__ = "0.6.0"
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@
setup(
name = 'mercadobitcoin',
description = 'A Python wrapper for Mercado Bitcoin API',
version = '0.5.0',
version = '0.6.0',
packages = ['mercadobitcoin'],
author = 'Alan Fachini',
author_email = '[email protected]',
url = 'https://github.com/alfakini/python-mercadobitcoin',
download_url = 'https://github.com/alfakini/python-mercadobitcoin/tarball/0.5.0',
keywords = ['bitcoin', 'litcoin', 'mercadobitcoin', 'trade', 'orderbook'],
download_url = 'https://github.com/alfakini/python-mercadobitcoin/tarball/0.6.0',
keywords = ['bitcoin', 'litcoin', 'ethereum', 'ripple', 'mercadobitcoin', 'trade', 'orderbook'],
install_requires=INSTALL_REQUIREMENTS,
classifiers = [
'Development Status :: 4 - Beta',
Expand All @@ -48,7 +48,7 @@
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py35
envlist = py27, py37

[testenv]
passenv =
Expand Down

0 comments on commit 7d6c7f0

Please sign in to comment.