You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,14 @@ 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.3.0] - 2026-05-26
9
+
10
+
### Breaking Changes
11
+
- Retargeted the published package and all repo projects from `net9.0` to `net10.0`; consumers must build and run on .NET 10 SDK/runtime or stay on `0.2.x`
12
+
13
+
### Changed
14
+
- Removed the handler's redundant `System.Text.Json` package reference now that it is provided by the framework target
Copy file name to clipboardExpand all lines: src/BitcoinKernel/BitcoinKernel.csproj
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
1
<ProjectSdk="Microsoft.NET.Sdk">
2
2
3
3
<PropertyGroup>
4
-
<TargetFramework>net9.0</TargetFramework>
4
+
<TargetFramework>net10.0</TargetFramework>
5
5
<ImplicitUsings>enable</ImplicitUsings>
6
6
<Nullable>enable</Nullable>
7
7
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
8
8
9
9
<!-- NuGet Package Metadata -->
10
10
<PackageId>BitcoinKernel</PackageId>
11
-
<Version>0.2.0</Version>
11
+
<Version>0.3.0</Version>
12
12
<Authors>JanB84</Authors>
13
13
<Description>.NET bindings and managed wrappers for libbitcoinkernel. Provides direct access to Bitcoin Core consensus and validation logic with automatic memory management.</Description>
0 commit comments