Skip to content

Commit

Permalink
Release version 0.3.1 (#957)
Browse files Browse the repository at this point in the history
  • Loading branch information
st-pasha authored Apr 20, 2018
1 parent ff8d737 commit 79ba068
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,13 @@
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.3.0)
### [Unreleased](https://github.com/h2oai/datatable/compare/HEAD...v0.3.1)
#### Added
#### Changed
#### Fixed


### [v0.3.1](https://github.com/h2oai/datatable/compare/0.3.1...v0.3.0) — 2018-04-20
#### Added
- Added ability to delete rows from a view Frame.
- Implement countna() function for `obj64` columns.
Expand Down Expand Up @@ -56,7 +62,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Fixed sorting of 1-row view frames.


### [v0.3.0](https://github.com/h2oai/datatable/compare/0.3.0...v0.2.2) - 2018-03-19
### [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
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.3.0"
version = "0.3.1"
14 changes: 13 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"""
Build script for the `datatable` module.
$ python setup.py sdist
$ python setup.py bdist_wheel
$ twine upload dist/*
"""
Expand Down Expand Up @@ -341,9 +342,18 @@ def get_extra_link_args():

description="Python library for fast multi-threaded data manipulation and "
"munging.",
long_description="""
This is a Python package for manipulating 2-dimensional tabular data
structures (aka data frames). It is close in spirit to pandas or SFrame;
however we put specific emphasis on speed and big data support. As the
name suggests, the package is closely related to R's data.table and
attempts to mimic its core algorithms and API.
See https://github.com/h2oai/datatable for more details.
""",

# The homepage
url="https://github.com/h2oai/datatable.git",
url="https://github.com/h2oai/datatable",

# Author details
author="Pasha Stetsenko",
Expand Down Expand Up @@ -373,6 +383,8 @@ def get_extra_link_args():
"psutil"
],

python_requires=">=3.5",

tests_require=get_test_dependencies(),

extras_require={
Expand Down

0 comments on commit 79ba068

Please sign in to comment.