File tree Expand file tree Collapse file tree 3 files changed +39
-2
lines changed Expand file tree Collapse file tree 3 files changed +39
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file.
4
4
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
+
5
42
## [ 0.3.4] - 2024-02-16
6
43
7
44
### Bug Fixes
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
5
5
[project ]
6
6
name = " py-pilecore"
7
- version = " 0.3.4 "
7
+ version = " 0.4.0 "
8
8
description = " Public python SDK for the CEMS PileCore web-API."
9
9
requires-python = " >=3.9"
10
10
dependencies = [
Original file line number Diff line number Diff line change 4
4
__version__ = version ("py-pilecore" )
5
5
# during CI
6
6
except PackageNotFoundError :
7
- __version__ = "0.3.4 "
7
+ __version__ = "0.4.0 "
You can’t perform that action at this time.
0 commit comments