diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 771a31b..33ef760 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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' @@ -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' @@ -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' diff --git a/CHANGELOG.rst b/CHANGELOG.rst index efdde27..8ca0b0a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ Release Changelog ----------------- +0.3.0 (2020-10-28) +~~~~~~~~~~~~~~~~~~ + +* Enable quantile regression on RangerForestRegressor. + 0.2.0 (2020-10-23) ~~~~~~~~~~~~~~~~~~ diff --git a/pyproject.toml b/pyproject.toml index bf2ecd2..6933188 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] license = "GPL-3.0-or-later" diff --git a/skranger/_version.py b/skranger/_version.py index d3ec452..493f741 100644 --- a/skranger/_version.py +++ b/skranger/_version.py @@ -1 +1 @@ -__version__ = "0.2.0" +__version__ = "0.3.0"