File tree 3 files changed +15
-3
lines changed
3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,17 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
- ## [ 0.1.0] - Unreleased
8
+ ## [ 0.1.1] - 2024-02-28
9
+
10
+ ### Fixed
11
+
12
+ - Bugs in KSP solver wrapper.
13
+
14
+ ### Added
15
+
16
+ - More methods to the low-level API.
17
+
18
+ ## [ 0.1.0] - 2024-01-27
9
19
10
20
### Added
11
21
Original file line number Diff line number Diff line change 1
1
name = " PetscCall"
2
2
uuid = " 1194c000-87c4-4102-b4a0-a6217ec4849e"
3
3
authors = [
" Francesc Verdugo <[email protected] > and contributors" ]
4
- version = " 0.1.0 "
4
+ version = " 0.1.1 "
5
5
6
6
[deps ]
7
7
Libdl = " 8f399da3-3557-5675-b5ff-fb832c97cbdb"
Original file line number Diff line number Diff line change 373
373
374
374
function ksp_finalize! (setup:: KspMPISetup )
375
375
if ! setup. user_handles
376
- ksp_destroy_handles! (setup. handles)
376
+ ownership = setup. ownership
377
+ handles = setup. handles
378
+ GC. @preserve ownership ksp_destroy_handles! (handles)
377
379
end
378
380
nothing
379
381
end
You can’t perform that action at this time.
0 commit comments