From 6bf153982eacc9205b04ba4e94aea4eea63f613c Mon Sep 17 00:00:00 2001 From: Kevin Kho Date: Fri, 15 Jan 2021 03:14:30 +0000 Subject: [PATCH] 0.5.0 Release --- RELEASE.md | 9 +++++++++ fugue_version/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/RELEASE.md b/RELEASE.md index 71a83469..3a4fe5d5 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,14 @@ # Release Notes +## 0.5.0 + +* [Limit and Limit by Partition](https://github.com/fugue-project/fugue/issues/128) +* [README code](https://github.com/fugue-project/fugue/issues/132) is working now +* Limit was renamed to [take and added to SQL interface](https://github.com/fugue-project/fugue/issues/136) +* RPC for [Callbacks](https://github.com/fugue-project/fugue/issues/139) to collect information from workers in real time +* Changes in handling [input dataframe determinism](https://github.com/fugue-project/fugue/issues/144). This fixes a bug +related to [thread locks with Spark DataFrames](https://github.com/fugue-project/fugue/issues/143) because of a deepcopy. + ## 0.4.9 * [sample](https://github.com/fugue-project/fugue/issues/120) function diff --git a/fugue_version/__init__.py b/fugue_version/__init__.py index 574c0666..3d187266 100644 --- a/fugue_version/__init__.py +++ b/fugue_version/__init__.py @@ -1 +1 @@ -__version__ = "0.4.9" +__version__ = "0.5.0"