Skip to content

Commit

Permalink
Rev up the version
Browse files Browse the repository at this point in the history
  • Loading branch information
jnmclarty committed Aug 15, 2015
1 parent f39c1a4 commit 11c57ea
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -11,4 +11,5 @@ docs/build/*
.spyderproject
trump.db
*.log
trump_handle.log
trump_handle.log
*.*~
2 changes: 1 addition & 1 deletion docs/source/conf.py
Expand Up @@ -63,7 +63,7 @@
# The short X.Y version.
version = '0.0'
# The full version, including alpha/beta/rc tags.
release = '0.0.4'
release = '0.0.5'

# 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
Expand Up @@ -6,7 +6,7 @@
from setuptools import setup, find_packages
from setuptools.command.install import install

v = '0.0.4'
v = '0.0.5'

cmds = sys.argv
installing = 'install' in cmds
Expand Down
2 changes: 1 addition & 1 deletion trump/__init__.py
@@ -1,2 +1,2 @@
__version__ = "0.0.4"
__version__ = "0.0.5"
from trump.orm import SetupTrump, SymbolManager
4 changes: 2 additions & 2 deletions trump/config/trump.cfg_sample
Expand Up @@ -31,11 +31,11 @@ engine: sqlite://

; MySQL, Microsoft SQL, Oracle, are all supported by SQLAlchemy, might work.

; Not Used in Trump 0.0.4:
; Not Used in Trump 0.0.5:
[read]
engine: {dialect}://{user}:{password}@{host}:{port}/{name}

; Not Used in Trump 0.0.4:
; Not Used in Trump 0.0.5:
[options]
raise_by_default: true
debug: false

0 comments on commit 11c57ea

Please sign in to comment.