Skip to content

Commit d434979

Browse files
committed
bump version to 0.1.1 for BitcoinKernel and BitcoinKernel.Core packages
1 parent dabbcd8 commit d434979

4 files changed

Lines changed: 11 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,12 @@ jobs:
8686
name: Conformance Tests
8787
runs-on: ${{ matrix.os }}
8888
strategy:
89-
matrix:
90-
os: [ubuntu-latest, macos-latest]
91-
fail-fast: false
89+
include:
90+
- os: ubuntu-latest
91+
platform: linux_amd64
92+
- os: macos-latest
93+
platform: darwin_arm64
94+
fail-fast: false
9295

9396
env:
9497
TEST_VERSION: '0.0.1'
@@ -112,7 +115,7 @@ jobs:
112115
- name: Download test runner
113116
run: |
114117
mkdir -p ${{ env.TEST_DIR }}
115-
DOWNLOAD_URL="https://github.com/${{ env.TEST_REPO }}/releases/download/v${{ env.TEST_VERSION }}/kernel-bindings-tests_${{ env.TEST_VERSION }}_${{ runner.os }}.tar.gz"
118+
DOWNLOAD_URL="https://github.com/${{ env.TEST_REPO }}/releases/download/v${{ env.TEST_VERSION }}/kernel-bindings-tests_${{ env.TEST_VERSION }}_${{ matrix.platform }}.tar.gz"
116119
echo "Downloading from: $DOWNLOAD_URL"
117120
curl --fail -L -o ${{ env.TEST_DIR }}/test-runner.tar.gz "$DOWNLOAD_URL"
118121
tar -xzf ${{ env.TEST_DIR }}/test-runner.tar.gz -C ${{ env.TEST_DIR }}

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.0 | High-level API with fluent builder pattern |
19-
| **BitcoinKernel.Core** | 0.1.0 | Managed wrappers and native bindings |
18+
| **BitcoinKernel** | 0.1.1 | High-level API with fluent builder pattern |
19+
| **BitcoinKernel.Core** | 0.1.1 | 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.0</Version>
11+
<Version>0.1.1</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.0</Version>
11+
<Version>0.1.1</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)