Skip to content

Commit

Permalink
prep for 0.1.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
pri22296 committed Apr 16, 2017
1 parent b9126ee commit 1f8b973
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions beautifultable/beautifultable.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,10 @@ class BeautifulTable:
intersection_char : str
Character used to draw intersection of a vertical and horizontal
line. Disabling it just draws the horizontal line char in it's place.
numeric_precision : int
All float values will have maximum number of digits after the decimal,
capped by this value(Default 3).
"""

WEP_WRAP = WidthExceedPolicy.WEP_WRAP
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
# The short X.Y version.
version = '0.1'
# The full version, including alpha/beta/rc tags.
release = '0.1.2'
release = '0.1.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup
import sys

version = '0.1.2'
version = '0.1.3'
install_requires = []

if sys.version_info < (3, 4):
Expand Down

0 comments on commit 1f8b973

Please sign in to comment.