diff --git a/.github/workflows/pypi.yaml b/.github/workflows/pypi.yaml index 3f35378..7243a71 100644 --- a/.github/workflows/pypi.yaml +++ b/.github/workflows/pypi.yaml @@ -7,6 +7,7 @@ permissions: jobs: build: + name: Build Package runs-on: ubuntu-latest steps: @@ -45,7 +46,7 @@ jobs: overwrite: true upload: - name: Upload to PyPI + name: Upload Package to PyPI needs: [ build ] runs-on: ubuntu-latest environment: diff --git a/CHANGELOG.md b/CHANGELOG.md index 3652ae8..5479102 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## v1.2.1 (10.04.2025) + +* Update dependencies +* Update the package classifiers + +## v1.2.0 (30.06.2024) + +* Bump minimal Python version to 3.9 +* Use ruff as the code linter and formatter +* Update dependencies + ## v1.1.0 (05.10.2021) * Introduced optional `normalizedsmooth` argument to reduce dependence on xdata and weights [#47](https://github.com/espdev/csaps/pull/47) diff --git a/pyproject.toml b/pyproject.toml index 137c995..c53e601 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "csaps" -version = "1.2.0" +version = "1.2.1" description = "Cubic spline approximation (smoothing)" authors = ["Evgeny Prilepin "] license = "MIT"