Skip to content

Commit

Permalink
release 0.2.0 (#46)
Browse files Browse the repository at this point in the history
* bump version 0.2.0

* add changelog; include meta files in build
  • Loading branch information
crflynn committed Oct 24, 2020
1 parent 925bd9d commit b08e005
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.rst
@@ -0,0 +1,18 @@
Release Changelog
-----------------

0.2.0 (2020-10-23)
~~~~~~~~~~~~~~~~~~

* Fix bug in classifier to reorder probabilities properly using forest's ``class_values``.

0.1.1 (2020-07-09)
~~~~~~~~~~~~~~~~~~

* Unpin sklearn/numpy deps, drop Cython dependency, since building wheels.
* Use numpy pyobjects to improve compilation.

0.1.0 (2020-06-03)
~~~~~~~~~~~~~~~~~~

* First release.
9 changes: 7 additions & 2 deletions pyproject.toml
Expand Up @@ -33,15 +33,20 @@ known_standard_library = ["setuptools"]

[tool.poetry]
name = "skranger"
version = "0.1.1"
version = "0.2.0"
description = "Python bindings for C++ ranger random forests"
authors = ["Flynn <crf204@gmail.com>"]
license = "GPL-3.0-or-later"
readme = "README.rst"
homepage = "https://github.com/crflynn/skranger"
repository = "https://github.com/crflynn/skranger"
documentation = "https://github.com/crflynn/skranger"
include = ["skranger/ensemble/ranger/**/*"]
include = [
"skranger/ensemble/ranger/**/*",
"CHANGELOG.rst",
"LICENSE.txt",
"README.rst",
]
build = "build.py"
keywords = ["random", "forest", "ranger", "machine", "learning"]
classifiers = [
Expand Down
2 changes: 1 addition & 1 deletion skranger/_version.py
@@ -1 +1 @@
__version__ = "0.1.1"
__version__ = "0.2.0"

0 comments on commit b08e005

Please sign in to comment.