Skip to content

Commit

Permalink
Release version 0.3.0 (#873)
Browse files Browse the repository at this point in the history
  • Loading branch information
st-pasha authored Mar 19, 2018
1 parent 87e7ad6 commit 24798ca
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@
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.2.2)
### [Unreleased](https://github.com/h2oai/datatable/compare/HEAD...v0.3.0)



### [v0.3.0](https://github.com/h2oai/datatable/compare/0.3.0...v0.2.2) - 2018-03-19
#### Added
- Method `df.tonumpy()` now has argument `stype` which will force conversion into
a numpy array of the specific stype.
Expand Down Expand Up @@ -63,7 +67,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
column.
- Added stats functions `.mode()` and `.nmodal()`.


#### Changed
- When writing "round" doubles/floats to CSV, they'll now always have trailing zero.
For example, [0.0, 1.0, 1e23] now produce "0.0,1.0,1.0e+23" instead of "0,1,1e+23".
Expand All @@ -88,7 +91,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Parameter `inplace` of method `rbind()` was removed: instead you can now rbind
frames to an empty frame: `dt.Frame().rbind(df1, df2)`.


#### Fixed
- `datatable` will no longer cause the C locale settings to change upon importing.
- reading a csv file with invalid UTF-8 characters in column names will no longer
Expand Down Expand Up @@ -123,6 +125,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
applied to a view Frame.



### [v0.2.2](https://github.com/h2oai/datatable/compare/v0.2.2...v0.2.1) — 2017-10-18
#### Added
- Ability to write DataTable into a CSV file: the `.to_csv()` method. The CSV writer
Expand Down Expand Up @@ -179,4 +182,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### [v0.2.0](https://github.com/h2oai/datatable/compare/v0.2.0...v0.1.0) — 2017-08-30



### [v0.1.0](https://github.com/h2oai/datatable/tree/v0.1.0) — 2017-04-13
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.2.2"
version = "0.3.0"
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[metadata]
license_file = LICENSE
description-file = README.md

[flake8]
ignore = E241,E265,E302,E303,E701,D105,D202
Expand All @@ -9,5 +10,5 @@ inline-quotes = "
[tool:pytest]
minversion = 3.0
norecursedirs = build c docs temp benchmarks .cache .git .idea .venv
norecursedirs = benchmarks build c ci docs microbench temp .benchmarks .cache .git .idea .venv
python_files = test_*.py bench_*.py

0 comments on commit 24798ca

Please sign in to comment.