We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 80b7c92 + 962ab23 commit 3f027ccCopy full SHA for 3f027cc
.github/workflows/semver.yml
@@ -0,0 +1,15 @@
1
+name: SemVer checks
2
+on: [push, pull_request]
3
+
4
+jobs:
5
+ semver-checks:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - name: Checkout source code
9
+ uses: actions/checkout@v4
10
+ - name: Install Rust stable toolchain
11
+ run: |
12
+ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain stable
13
+ rustup override set stable
14
+ - name: Check SemVer
15
+ uses: obi1kenobi/cargo-semver-checks-action@v2
Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ldk-node"
-version = "0.4.3"
+version = "0.5.0+git"
authors = ["Elias Rohrer <[email protected]>"]
homepage = "https://lightningdevkit.org/"
license = "MIT OR Apache-2.0"
0 commit comments