Skip to content

Commit

Permalink
Last PR before releasing version 2.0.0a6 (#2301)
Browse files Browse the repository at this point in the history
* Update CHANGELOG.md for 2.0.0a6

* Update image tags in k8s YAML files for 2.0.0a6

* Update version.py for 2.0.0a6
  • Loading branch information
ttmc committed May 17, 2018
1 parent f86704b commit 6fd8558
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,22 @@ For reference, the possible headings are:
* **External Contributors** to list contributors outside of BigchainDB GmbH.
* **Notes**

## [2.0 Alpha 6] - 2018-05-17

Tag name: v2.0.0a6

### Changed

Upgraded PyMongo to version 3.6 (which is compatible with MongoDB 3.6, 3.4 [and more](https://docs.mongodb.com/ecosystem/drivers/driver-compatibility-reference/#python-driver-compatibility)). [Pull request #2298](https://github.com/bigchaindb/bigchaindb/pull/2298)

### Fixed

When deploying a node using our Docker Compose file, it didn't expose port 46656, which is used by Tendermint for inter-node communications, so the node couldn't communicate with other nodes. We fixed that in [pull request #2299](https://github.com/bigchaindb/bigchaindb/pull/2299)

### Notes

We ran all our tests using MongoDB 3.6 and they all passed, so it seems safe to use BigchainDB with MongoDB 3.6 from now on.

## [2.0 Alpha 5] - 2018-05-11

Tag name: v2.0.0a5
Expand Down
4 changes: 2 additions & 2 deletions bigchaindb/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '2.0.0a5'
__short_version__ = '2.0a5'
__version__ = '2.0.0a6'
__short_version__ = '2.0a6'
2 changes: 1 addition & 1 deletion k8s/bigchaindb/bigchaindb-ss.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ spec:
timeoutSeconds: 15
# BigchainDB container
- name: bigchaindb
image: bigchaindb/bigchaindb:2.0.0-alpha5
image: bigchaindb/bigchaindb:2.0.0-alpha6
imagePullPolicy: Always
args:
- start
Expand Down
2 changes: 1 addition & 1 deletion k8s/dev-setup/bigchaindb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ spec:
terminationGracePeriodSeconds: 10
containers:
- name: bigchaindb
image: bigchaindb/bigchaindb:2.0.0-alpha5
image: bigchaindb/bigchaindb:2.0.0-alpha6
imagePullPolicy: Always
args:
- start
Expand Down

0 comments on commit 6fd8558

Please sign in to comment.