chainqueue

Blockchain transaction queue control
Log | Files | Refs | LICENSE

commit d174538666395e698d537cbdc2f17eb5754a646b
parent 6f4a0a6fc0833ad386626eb7da0bd8afe3fa1f79
Author: nolash <dev@holbrook.no>
Date:   Thu,  3 Jun 2021 14:05:56 +0200

Bump version

Diffstat:
ACHANGELOG | 8++++++++
Mchainqueue/db/migrations/sqlalchemy.py | 4++--
Msetup.cfg | 2+-
3 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG @@ -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 diff --git a/chainqueue/db/migrations/sqlalchemy.py b/chainqueue/db/migrations/sqlalchemy.py @@ -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() diff --git a/setup.cfg b/setup.cfg @@ -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