Skip to content

Commit c876c73

Browse files
committed
Update version to 0.1.2 and add changelog for release notes
1 parent c2f5377 commit c876c73

4 files changed

Lines changed: 34 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [0.1.2] - 2026-01-26
9+
10+
### Added
11+
- Kernel bindings test handler for conformance testing
12+
- Support for block validation and chain management in examples
13+
- Improved project documentation and examples
14+
15+
### Changed
16+
- N/A
17+
18+
### Fixed
19+
- Minor bug fixes and stability improvements
20+
21+
### Security
22+
- N/A
23+
24+
## [0.1.1] - Previous Release
25+
26+
Initial pre-release version with basic functionality.
27+
28+
---
29+
30+
**Note**: This library is still in early development. Version 0.1.x releases are pre-release and not recommended for production use.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ BitcoinKernel.NET brings Bitcoin Core's robust consensus engine to .NET applicat
1515

1616
| Package | Version | Description |
1717
|---------|---------|-------------|
18-
| **BitcoinKernel** | 0.1.1 | High-level API with fluent builder pattern |
19-
| **BitcoinKernel.Core** | 0.1.1 | Managed wrappers and native bindings |
18+
| **BitcoinKernel** | 0.1.2 | High-level API with fluent builder pattern |
19+
| **BitcoinKernel.Core** | 0.1.2 | Managed wrappers and native bindings |
2020

2121

2222
## Quick Start

src/BitcoinKernel.Core/BitcoinKernel.Core.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.Core</PackageId>
11-
<Version>0.1.1</Version>
11+
<Version>0.1.2</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>

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.1</Version>
11+
<Version>0.1.2</Version>
1212
<Authors>JanB84</Authors>
1313
<Description>.NET library for Bitcoin Core functionality. Provides a simple, fluent API for Bitcoin consensus validation, script verification, and blockchain operations powered by libbitcoinkernel.</Description>
1414
<PackageLicenseExpression>MIT</PackageLicenseExpression>

0 commit comments

Comments
 (0)