Skip to content

Commit f03eadd

Browse files
committed
🙏 trigger release
1 parent cdb7094 commit f03eadd

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci-tsdownsample.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
# Perhaps smth more in line with this https://github.com/messense/crfs-rs/blob/main/.github/workflows/Python.yml
8888
name: build on ${{ matrix.os }} (${{ matrix.target }} - ${{ matrix.manylinux || 'auto' }})
8989
# only run on push to main and on release
90-
if: "success() && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'Full Build'))"
90+
# if: "success() && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'Full Build'))"
9191
strategy:
9292
fail-fast: false
9393
matrix:
@@ -166,7 +166,7 @@ jobs:
166166

167167
Release:
168168
needs: [Lint_and_Check, Test, Build]
169-
if: "success() && startsWith(github.ref, 'refs/tags/')"
169+
# if: "success() && startsWith(github.ref, 'refs/tags/')"
170170
runs-on: ubuntu-latest
171171

172172
steps:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "maturin"
55
[project]
66
name = "tsdownsample"
77
description = "Time series downsampling in rust"
8-
version = "0.1.4.1"
8+
version = "0.1.5"
99
requires-python = ">=3.8"
1010
dependencies = ["numpy"]
1111
authors = [{name = "Jeroen Van Der Donckt"}]

tsdownsample/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
NaNMinMaxLTTBDownsampler,
1212
)
1313

14-
__version__ = "0.1.4.1"
14+
__version__ = "0.1.5"
1515
__author__ = "Jeroen Van Der Donckt"
1616

1717
__all__ = [

0 commit comments

Comments
 (0)