Bump version

This commit is contained in:
nolash 2021-06-03 14:05:56 +02:00
parent 6f4a0a6fc0
commit d174538666
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
3 changed files with 11 additions and 3 deletions

8
CHANGELOG Normal file
View 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

View File

@ -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()

View File

@ -1,6 +1,6 @@
[metadata]
name = chainqueue
version = 0.0.2b1
version = 0.0.2b2
description = Generic blockchain transaction queue control
author = Louis Holbrook
author_email = dev@holbrook.no