Skip to content

Commit 3cc348e

Browse files
committed
Bumped version and Updated changelog
1 parent b7076eb commit 3cc348e

3 files changed

Lines changed: 14 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ 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+
## [0.2.0] - 2026-03-03
9+
10+
### Breaking Changes
11+
- Removed `BitcoinKernel` facade package and `KernelLibrary` fluent builder; consumers now use the managed API directly
12+
- Renamed package/namespaces from `BitcoinKernel.Core` to `BitcoinKernel`
13+
- `Chain` class moved from `BitcoinKernel.Abstractions` to `BitcoinKernel.Chain`; import `using BitcoinKernel.Chain;` to access it
14+
- `BitcoinKernel.Abstractions` namespace renamed to `BitcoinKernel.Primatives`; update any `using BitcoinKernel.Abstractions;` imports accordingly
15+
- `LoggingConnection` moved from the global namespace into `BitcoinKernel`; add `using BitcoinKernel;` if not already present
16+
17+
### Changed
18+
- Examples rewritten to use the managed API directly without the fluent builder
19+
820
## [0.1.2] - 2026-01-26
921

1022
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This library uses [libbitcoinkernel](https://github.com/bitcoin/bitcoin/tree/mas
1010

1111
| Package | Version | Description |
1212
|---------|---------|-------------|
13-
| **BitcoinKernel** | 0.1.2 | Managed wrappers and native bindings |
13+
| **BitcoinKernel** | 0.2.0 | Managed wrappers and native bindings |
1414

1515
```bash
1616
dotnet add package BitcoinKernel

src/BitcoinKernel/BitcoinKernel.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<!-- NuGet Package Metadata -->
1010
<PackageId>BitcoinKernel</PackageId>
11-
<Version>0.1.2</Version>
11+
<Version>0.2.0</Version>
1212
<Authors>JanB84</Authors>
1313
<Description>.NET bindings and managed wrappers for libbitcoinkernel. Provides direct access to Bitcoin Core consensus and validation logic with automatic memory management.</Description>
1414
<PackageLicenseExpression>MIT</PackageLicenseExpression>

0 commit comments

Comments
 (0)