Skip to content

Commit 9564c77

Browse files
committed
Cut 0.1-alpha.1 release
- Update CHANGELOG - Update version numbers
1 parent 9ee2baa commit 9564c77

File tree

4 files changed

+31
-7
lines changed

4 files changed

+31
-7
lines changed

CHANGELOG.md

Lines changed: 28 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,34 @@
1-
# 0.1-alpha - Apr 27, 2023
1+
# 0.1-alpha.1 - Jun 6, 2023
2+
- Generation of Swift, Kotlin (JVM and Android), and Python bindings is now supported through UniFFI (#25).
3+
- Lists of connected peers and channels may now be retrieved in bindings (#56).
4+
- Gossip data may now be sourced from the P2P network, or a Rapid Gossip Sync server (#70).
5+
- Network addresses are now stored and resolved via a `NetAddress` type (#85).
6+
- The `next_event` method has been renamed `wait_next_event` and a new non-blocking method for event queue access has been introduces as `next_event` (#91).
7+
- Node announcements are now regularly broadcasted (#93).
8+
- Duplicate payments are now only avoided if we actually sent them out (#96).
9+
- The `Node` may now be used to sign and verify arbitrary messages (#99).
10+
- A `KVStore` interface is introduced that may be used to implement custom persistence backends (#101).
11+
- An `SqliteStore` persistence backend is added and set as the new default (#100).
12+
- Successful fee rate updates are now mandatory on `Node` startup (#102).
13+
- The wallet sync intervals are now configurable (#102).
14+
- Granularity of logging can now be configured (#108).
15+
16+
17+
In total, this release includes changes in 64 commits from 4 authors:
18+
- Steve Myers
19+
- Elias Rohrer
20+
- Jurvis Tan
21+
- televis
222

23+
**Note:** This release is still considered experimental, should not be run in
24+
production, and no compatibility guarantees are given until the release of 0.1.
25+
26+
# 0.1-alpha - Apr 27, 2023
327
This is the first alpha release of LDK Node. It features support for sourcing
4-
chain data via an Esplora server, filesystem persistence, gossip sourcing via
5-
the Lightning peer-to-peer network, and configurble entropy sources for the
28+
chain data via an Esplora server, file system persistence, gossip sourcing via
29+
the Lightning peer-to-peer network, and configurable entropy sources for the
630
integrated LDK and BDK-based wallets.
731

8-
Note that this release is still considered experimental, should not be run in
32+
**Note:** This release is still considered experimental, should not be run in
933
production, and no compatibility guarantees are given until the release of 0.1.
1034

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ldk-node"
3-
version = "0.1.0-alpha"
3+
version = "0.1.0-alpha.1"
44
authors = ["Elias Rohrer <[email protected]>"]
55
homepage = "https://lightningdevkit.org/"
66
license = "MIT OR Apache-2.0"

bindings/kotlin/ldk-node-android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ org.gradle.jvmargs=-Xmx1536m
22
android.useAndroidX=true
33
android.enableJetifier=true
44
kotlin.code.style=official
5-
libraryVersion=0.0.1-SNAPSHOT
5+
libraryVersion=0.1-alpha.1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
org.gradle.jvmargs=-Xmx1536m
22
kotlin.code.style=official
3-
libraryVersion=0.0.1-SNAPSHOT
3+
libraryVersion=0.1-alpha.1

0 commit comments

Comments
 (0)