diff --git a/CHANGELOG.md b/CHANGELOG.md index a36ea30..b5d5188 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. +## [0.3.3] - 2024-02-14 + +### Bug Fixes + +- *(ci)* Use PyPi tokenless authentication + +### Features + +- *(individual-friction-ranges)* Set soil-properties friction-range-strategy to "manual" when providing a value in the individual-friction-range input + ## [0.3.2] - 2024-01-15 ### Bug Fixes diff --git a/pyproject.toml b/pyproject.toml index 5666dee..e1944a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "py-pilecore" -version = "0.3.2" +version = "0.3.3" description = "Public python SDK for the CEMS PileCore web-API." requires-python = ">=3.9" dependencies = [ diff --git a/src/pypilecore/_version.py b/src/pypilecore/_version.py index 28e9660..ac3fe2a 100644 --- a/src/pypilecore/_version.py +++ b/src/pypilecore/_version.py @@ -4,4 +4,4 @@ __version__ = version("py-pilecore") # during CI except PackageNotFoundError: - __version__ = "0.3.2" + __version__ = "0.3.3"