Skip to content

Commit

Permalink
Add CHANGELOG entry for v8.0.1 (#4367)
Browse files Browse the repository at this point in the history
* Add CHANGELOG entry for v8.0.1

* Update version in __init__.py

* Update version in package.json
  • Loading branch information
arikfr authored Nov 17, 2019
1 parent 1bea65c commit cd13c97
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## v8.0.1 - 2019-11-17

* Fix the DB migration so that the correct key is used for encrypting Data Source credentials. Otherwise direct upgrades from versions older than v7 will not work properly.
* Bump pymssql to get around pymssql/pymssql#520.
* Specify version of pandas to allow clean install against vanilla Python 2.7.17.

## v8.0.0 - 2019-10-27

There were no changes in this release since v8.0.0-beta.2. This is just to mark a stable release.

## v8.0.0-beta.2 - 2019-09-16

This is an update to the previous beta release, which includes:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "redash-client",
"version": "8.0.0",
"version": "8.0.1",
"description": "The frontend part of Redash.",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion redash/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from .query_runner import import_query_runners
from .destinations import import_destinations

__version__ = '8.0.0'
__version__ = '8.0.1'


if os.environ.get("REMOTE_DEBUG"):
Expand Down

0 comments on commit cd13c97

Please sign in to comment.