main: add changelog and versioning

This commit is contained in:
Jacob Plaster
2019-06-05 17:27:39 +08:00
parent 72f6d0db4d
commit 7d0eed9f88
3 changed files with 9 additions and 0 deletions

3
CHANGELOG Normal file
View File

@@ -0,0 +1,3 @@
0.0.1
- Added change-log and PR/Issue templates

View File

@@ -2,6 +2,7 @@
This module is used to interact with the bitfinex api This module is used to interact with the bitfinex api
""" """
from .version import __version__
from .client import Client from .client import Client
from .models import (Order, Trade, OrderBook, Subscription, Wallet, from .models import (Order, Trade, OrderBook, Subscription, Wallet,
Position, FundingLoan, FundingOffer, FundingCredit) Position, FundingLoan, FundingOffer, FundingCredit)

5
bfxapi/version.py Normal file
View File

@@ -0,0 +1,5 @@
"""
This module contains the current version of the bfxapi lib
"""
__version__ = '0.0.1'