Skip to content

Commit bd75c2b

Browse files
author
Thijs Lukkezen
committed
chore(release): version 0.4.0
1 parent 799e1f1 commit bd75c2b

File tree

3 files changed

+39
-2
lines changed

3 files changed

+39
-2
lines changed

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,43 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.4.0] - 2024-03-12
6+
7+
### Bug Fixes
8+
9+
- Final max-bearing fixups & Add unittests
10+
- Do array comparison on float with np.isclose()
11+
- Remove dataclass hash & to_pandas caching
12+
- Make sure that all pile tip levels have same order
13+
- Remove dataclass hash & to_pandas caching
14+
- Fix MaxBearingResults initiation & refactor
15+
- Update unit test
16+
- Add missing pile definitions plot
17+
18+
### Features
19+
20+
- Rotate x-labels in 2D max-bearing plot
21+
- Add lru_cache on MaxBearingResults.to_pandas
22+
- Make SingleCPTBearingResultsContainer.cpt_results_dict a read-only property
23+
- Add methods to MaxBearingResults to align signature with SingleCPTBearingResultsContainer
24+
- Denote CPT name in MaxBeraingTable.origin attribute
25+
- Add delaunay map
26+
- Resolve comments in mr
27+
- Add result bearing 3d plots to notebook
28+
- Add 3D plots for bearing results
29+
- Combine grouper and single results
30+
- *(api)* Add verbose argument to functions in api module
31+
32+
### Miscellaneous Tasks
33+
34+
- Update example notebook
35+
- Revert
36+
37+
### Styling
38+
39+
- Lint file
40+
- Format file and fix typing errors
41+
542
## [0.3.4] - 2024-02-16
643

744
### Bug Fixes

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "py-pilecore"
7-
version = "0.3.4"
7+
version = "0.4.0"
88
description = "Public python SDK for the CEMS PileCore web-API."
99
requires-python = ">=3.9"
1010
dependencies = [

src/pypilecore/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
__version__ = version("py-pilecore")
55
# during CI
66
except PackageNotFoundError:
7-
__version__ = "0.3.4"
7+
__version__ = "0.4.0"

0 commit comments

Comments
 (0)