Bump version
This commit is contained in:
parent
6f4a0a6fc0
commit
d174538666
8
CHANGELOG
Normal file
8
CHANGELOG
Normal file
@ -0,0 +1,8 @@
|
||||
- 0.0.2
|
||||
* add fs backend
|
||||
* add flexible data directory
|
||||
* factor out sql backend as module
|
||||
- 0.0.1 (unreleased)
|
||||
* add queue states
|
||||
* add queries
|
||||
* add tx creation helper
|
@ -1,11 +1,11 @@
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
def chainqueue_upgrade(major, minor, patch):
|
||||
def chainqueue_upgrade(major=0, minor=0, patch=1):
|
||||
r0_0_1_u()
|
||||
|
||||
|
||||
def chainqueue_downgrade(major, minor, patch):
|
||||
def chainqueue_downgrade(major=0, minor=0, patch=1):
|
||||
r0_0_1_d()
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user