Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 0.3.0 release #526

Merged
merged 2 commits into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Changelog

All notable changes to the subprojects will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## Unreleased

-

## [0.3.0] - 2024-10-07

### Added

- Capture and report signer rejections back to the node ([#483](https://github.com/Blockstream/greenlight/pull/483), #[484](https://github.com/Blockstream/greenlight/pull/484)).
- Add trampoline client to delegate route finding to next node ([#475](https://github.com/Blockstream/greenlight/pull/475), #[489](https://github.com/Blockstream/greenlight/pull/489), #[498](https://github.com/Blockstream/greenlight/pull/498), #[505](https://github.com/Blockstream/greenlight/pull/505), #[511](https://github.com/Blockstream/greenlight/pull/511)).
- Add basic support for signer-less devices ([#281](https://github.com/Blockstream/greenlight/pull/281)).

### Changed

- Ensure that signer doesn't exit on network change ([#524](https://github.com/Blockstream/greenlight/pull/524))
- Signer reports the node id by itself ([#520](https://github.com/Blockstream/greenlight/pull/520))
- Upgrade to VLS 0.12 ([#504](https://github.com/Blockstream/greenlight/pull/504)).
- Add .resources dir to all crates in repo. This is soley to make it possible to publish artefacts ([#501](https://github.com/Blockstream/greenlight/pull/501))

### Fixed

- Several small drive-by fixes ([#468](https://github.com/Blockstream/greenlight/pull/468), [#471](https://github.com/Blockstream/greenlight/pull/471), [#508](https://github.com/Blockstream/greenlight/pull/508))
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion libs/gl-client-py/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gl-client-py"
version = "0.2.0"
version = "0.3.0"
edition = "2018"
authors = [
"Christian Decker",
Expand Down
2 changes: 1 addition & 1 deletion libs/gl-client-py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies = [

[tool.poetry]
name = "gl-client"
version = "0.2.0"
version = "0.3.0"
description = ""
authors = ["Christian Decker <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion libs/gl-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gl-client"
version = "0.2.0"
version = "0.3.0"
edition = "2018"
authors = ["Christian Decker", "The Greenlight Team"]
description = "Client library for Greenlight, and basis for language bindings."
Expand Down
4 changes: 2 additions & 2 deletions libs/gl-plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gl-plugin"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
authors = [
"Christian Decker",
Expand All @@ -25,7 +25,7 @@ cln-plugin = "^0.1"
cln-rpc = { workspace = true }
env_logger = "^0.7.1"
futures = "0.3"
gl-client = { version = "^0.2.0", path = "../gl-client" }
gl-client = { version = "^0.3.0", path = "../gl-client" }
governor = { version = "0.5", default-features = false, features = ["std"] }
hex = "0.4"
hyper = "0.14.28"
Expand Down
2 changes: 1 addition & 1 deletion libs/gl-signerproxy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gl-signerproxy"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
authors = [
"Christian Decker",
Expand Down
4 changes: 2 additions & 2 deletions libs/gl-testing/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "gltesting"
version = "0.2.0"
version = "0.3.0"
description = ""
authors = ["Christian Decker <[email protected]>"]
license = "MIT"
Expand Down Expand Up @@ -37,7 +37,7 @@ pytest-sugar = "^0.9.7"
#
# Contributors should use `poetry install` in the project root
# to insure the installation is editable from local sources.
gl-client = "0.2.0"
gl-client = "0.3.0"
cln-version-manager = "^0.1.0"

[tool.poetry.group.dev.dependencies]
Expand Down
46 changes: 30 additions & 16 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading