Skip to content

Commit

Permalink
Release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
st-pasha committed May 25, 2018
1 parent a5df590 commit 4cc587d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

### [Unreleased](https://github.com/h2oai/datatable/compare/HEAD...v0.4.0)
### [Unreleased](https://github.com/h2oai/datatable/compare/HEAD...v0.5.0)


### [v0.5.0](https://github.com/h2oai/datatable/compare/v0.5.0...v0.4.0) — 2018-05-25
#### Added
- rbind()-ing now works on columns of all types (including between any types).
- `dt.rbind()` function to perform out-of-place row binding.
Expand All @@ -19,7 +22,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
package was built.
- ability to read .bz2 compressed files with fread.


#### Fixed
- Ensure that fread only emits messages to Python from the master thread.
- Fread can now properly recognize quoted NA strings.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ pip install datatable
On Linux you can install a binary distribution as
```
# If you have Python 3.5
pip install https://s3.amazonaws.com/h2o-release/datatable/stable/datatable-0.3.2/datatable-0.3.2-cp35-cp35m-linux_x86_64.whl
pip install https://s3.amazonaws.com/h2o-release/datatable/stable/datatable-0.5.0/datatable-0.5.0-cp35-cp35m-linux_x86_64.whl
# If you have Python 3.6
pip install https://s3.amazonaws.com/h2o-release/datatable/stable/datatable-0.3.2/datatable-0.3.2-cp36-cp36m-linux_x86_64.whl
pip install https://s3.amazonaws.com/h2o-release/datatable/stable/datatable-0.5.0/datatable-0.5.0-cp36-cp36m-linux_x86_64.whl
```

On all other platforms a source distribution will be needed. For more information see [Build instructions](https://github.com/h2oai/datatable/wiki/Build-instructions).
Expand Down
2 changes: 1 addition & 1 deletion datatable/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#-------------------------------------------------------------------------------

version = "0.4.0"
version = "0.5.0"

0 comments on commit 4cc587d

Please sign in to comment.