From df5601c2dfed0aa24a55392efdf2cb9b5ba2f810 Mon Sep 17 00:00:00 2001 From: Ahmed Muawia Khan Date: Wed, 1 Aug 2018 14:43:10 +0200 Subject: [PATCH] Last PR before the release of BigchainDB 2.0 Beta 5 --- CHANGELOG.md | 14 +++++++++++++- bigchaindb/version.py | 4 ++-- k8s/bigchaindb/bigchaindb-ss.yaml | 2 +- k8s/dev-setup/bigchaindb.yaml | 2 +- setup.py | 2 +- 5 files changed, 18 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69b752a5..8307d290 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,11 +18,23 @@ For reference, the possible headings are: * **Known Issues** * **Notes** +## [2.0 Beta 5] - 2018-08-01 + +Tag name: v2.0.0b5 + +### Changed + +* Supported version of Tendermint `0.22.3` -> `0.22.8`. [Pull request #2429](https://github.com/bigchaindb/bigchaindb/pull/2429). + +### Fixed + +* Raise DoubleSpend exception if transaction is already part of the database. [Pull request #2422](https://github.com/bigchaindb/bigchaindb/pull/2422). + ## [2.0 Beta 4] - 2018-07-30 Tag name: v2.0.0b4 -### Added +### Changed - Added scripts for creating a configuration to manage processes with Monit. [Pull request #2410](https://github.com/bigchaindb/bigchaindb/pull/2410). diff --git a/bigchaindb/version.py b/bigchaindb/version.py index a48ee6ed..70929438 100644 --- a/bigchaindb/version.py +++ b/bigchaindb/version.py @@ -1,2 +1,2 @@ -__version__ = '2.0.0b4' -__short_version__ = '2.0b4' +__version__ = '2.0.0b5' +__short_version__ = '2.0b5' diff --git a/k8s/bigchaindb/bigchaindb-ss.yaml b/k8s/bigchaindb/bigchaindb-ss.yaml index 403369bb..96575962 100644 --- a/k8s/bigchaindb/bigchaindb-ss.yaml +++ b/k8s/bigchaindb/bigchaindb-ss.yaml @@ -154,7 +154,7 @@ spec: timeoutSeconds: 15 # BigchainDB container - name: bigchaindb - image: bigchaindb/bigchaindb:2.0.0-beta4 + image: bigchaindb/bigchaindb:2.0.0-beta5 imagePullPolicy: Always args: - start diff --git a/k8s/dev-setup/bigchaindb.yaml b/k8s/dev-setup/bigchaindb.yaml index 55a98307..481b7890 100644 --- a/k8s/dev-setup/bigchaindb.yaml +++ b/k8s/dev-setup/bigchaindb.yaml @@ -34,7 +34,7 @@ spec: terminationGracePeriodSeconds: 10 containers: - name: bigchaindb - image: bigchaindb/bigchaindb:2.0.0-beta4 + image: bigchaindb/bigchaindb:2.0.0-beta5 imagePullPolicy: Always args: - start diff --git a/setup.py b/setup.py index 0fc31bec..edb8e5b6 100644 --- a/setup.py +++ b/setup.py @@ -112,7 +112,7 @@ setup( zip_safe=False, python_requires='>=3.6', classifiers=[ - 'Development Status :: 4 - Beta', + 'Development Status :: 5 - Beta', 'Intended Audience :: Developers', 'Topic :: Database', 'Topic :: Database :: Database Engines/Servers',