Skip to content

Commit 48ca58d

Browse files
committed
Update changelog
1 parent 869cb34 commit 48ca58d

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## "main" branch
9+
10+
### Fixed
11+
- Typo: `node_coorinates_unit_cube` -> `node_coordinates_unit_cube`.
12+
- Bug in `nullspace_linear_elasticity`.
13+
14+
### Deprecated
15+
16+
- `near_nullspace_linear_elasticity` in favor of `nullspace_linear_elasticity`.
17+
818
## [0.5.2] - 2024-08-13
919

1020
### Added

src/PartitionedArrays.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,7 @@ export laplacian_fem
182182
export linear_elasticity_fem
183183
export node_coordinates_unit_cube
184184
export nullspace_linear_elasticity
185+
export nullspace_linear_elasticity!
185186
export near_nullspace_linear_elasticity
186187
include("gallery.jl")
187188

test/gallery_tests.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ function gallery_tests(distribute,parts_per_dir)
5252
@test isa(Y,PVector)
5353
y = A*B[1]
5454
@test isa(y,PVector)
55+
nullspace_linear_elasticity!(B,x)
56+
y = A*B[1]
57+
@test isa(y,PVector)
5558

5659
end
5760

0 commit comments

Comments
 (0)