Skip to content

Commit

Permalink
bump to 0.3.0 (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
crflynn authored Oct 28, 2020
1 parent 26ffe86 commit 7a0a5c9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
uses: actions/cache@v1
with:
path: ~/.asdf
key: v2-${{ runner.os }}-asdf-${{ hashFiles(format('{0}{1}', github.workspace, '/poetry.lock')) }}
key: v4-${{ runner.os }}-asdf-${{ hashFiles(format('{0}{1}', github.workspace, '/poetry.lock')) }}
restore-keys: |
v2-${{ runner.os }}-asdf-
v4-${{ runner.os }}-asdf-
- name: Install tools
if: steps.cache-deps.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -89,9 +89,9 @@ jobs:
uses: actions/cache@v1
with:
path: ~/.asdf
key: v2-${{ runner.os }}-${{ matrix.python-version }}-asdf-${{ hashFiles(format('{0}{1}', github.workspace, '/poetry.lock')) }}
key: v4-${{ runner.os }}-${{ matrix.python-version }}-asdf-${{ hashFiles(format('{0}{1}', github.workspace, '/poetry.lock')) }}
restore-keys: |
v2-${{ runner.os }}-${{ matrix.python-version }}-asdf-
v4-${{ runner.os }}-${{ matrix.python-version }}-asdf-
- name: Install python
if: steps.cache-deps.outputs.cache-hit != 'true'
Expand Down Expand Up @@ -151,9 +151,9 @@ jobs:
uses: actions/cache@v1
with:
path: ~/.asdf
key: v2-${{ runner.os }}-${{ matrix.python-version }}-asdf-${{ hashFiles(format('{0}{1}', github.workspace, '/poetry.lock')) }}
key: v4-${{ runner.os }}-${{ matrix.python-version }}-asdf-${{ hashFiles(format('{0}{1}', github.workspace, '/poetry.lock')) }}
restore-keys: |
v2-${{ runner.os }}-${{ matrix.python-version }}-asdf-
v4-${{ runner.os }}-${{ matrix.python-version }}-asdf-
- name: Install python
if: steps.cache-deps.outputs.cache-hit != 'true'
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Release Changelog
-----------------

0.3.0 (2020-10-28)
~~~~~~~~~~~~~~~~~~

* Enable quantile regression on RangerForestRegressor.

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

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ known_standard_library = ["setuptools"]

[tool.poetry]
name = "skranger"
version = "0.2.0"
version = "0.3.0"
description = "Python bindings for C++ ranger random forests"
authors = ["Flynn <[email protected]>"]
license = "GPL-3.0-or-later"
Expand Down
2 changes: 1 addition & 1 deletion skranger/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.0"
__version__ = "0.3.0"

0 comments on commit 7a0a5c9

Please sign in to comment.