Skip to content
This repository has been archived by the owner on Apr 29, 2020. It is now read-only.

Commit

Permalink
Release 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
smokey42 committed Jul 8, 2015
1 parent 15e3b77 commit f4f13b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 17 deletions.
17 changes: 1 addition & 16 deletions fastbill/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,7 @@
"""

import decimal
decimal_types = (decimal.Decimal,)

try:
import cdecimal
decimal_types += (cdecimal.Decimal,)
decimal = cdecimal
except ImportError:
pass

import datetime
import json
import requests
import logging

__version__ = '0.6.0'
__version__ = '0.7.0'
__author__ = 'python-fastbill contributors'

from .wrapper import FastbillWrapper
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

setup(
name='fastbill',
version="0.6.0", # Don't forget to update fastbill.version too
version="0.7.0", # Don't forget to update fastbill.version too
description='A thin python wrapper for the fastbill API',
long_description=long_description,
author='Dimitar Roustchev',
Expand Down

0 comments on commit f4f13b8

Please sign in to comment.