Skip to content

Commit

Permalink
minor version number up
Browse files Browse the repository at this point in the history
  • Loading branch information
nakagami committed Apr 6, 2011
1 parent e385a8c commit 442e2a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion firebirdsql/fbcore.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def bs(byte_array):
return ''.join([chr(c) for c in byte_array])

DEBUG = False
__version__ = '0.3.4'
__version__ = '0.3.5'
apilevel = '2.0'
threadsafety = 1
paramstyle = 'qmark'
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from distutils.core import setup
import firebirdsql

classifiers = [
'Development Status :: 3 - Alpha',
Expand All @@ -7,7 +8,7 @@
]

setup(name='firebirdsql',
version='0.3.4',
version=firebirdsql.__version__,
description = 'python dbapi for firebird rdbms.',
url='http://github.com/nakagami/pyfirebirdsql/',
classifiers=classifiers,
Expand Down

0 comments on commit 442e2a0

Please sign in to comment.