Skip to content

Commit

Permalink
fixing entry point db-migrate
Browse files Browse the repository at this point in the history
  • Loading branch information
wandenberg committed May 30, 2012
1 parent 7d4ebc4 commit c0b551f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 1.5.1 - Wandenberg Vieira Peixoto <wandenberg@gmail.com> Wed, 30 May 2012 17:50:00 -0300
- Fixing entry point db-migrate

### 1.5.0 - Wandenberg Vieira Peixoto <wandenberg@gmail.com> Tue, 10 Apr 2012 02:00:00 -0300
- Removing some legacy code which updates version table, check *Upgrading simple-db-migrate version* on README.textile
- Make configuration file optional, all configuration may be set by command line
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# generate script automatically
entry_points = {
'console_scripts': [
'db-migrate = simple_db_migrate:run',
'db-migrate = simple_db_migrate:run_from_argv',
],
},

Expand Down
2 changes: 1 addition & 1 deletion simple_db_migrate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from config import FileConfig, Config
from main import Main

SIMPLE_DB_MIGRATE_VERSION = '1.5.0'
SIMPLE_DB_MIGRATE_VERSION = '1.5.1'

# fixing print in non-utf8 terminals
if sys.stdout.encoding != 'UTF-8':
Expand Down

0 comments on commit c0b551f

Please sign in to comment.