diff --git a/docs/release-notes/eclair-vnext.md b/docs/release-notes/eclair-vnext.md new file mode 100644 index 0000000000..5562da1032 --- /dev/null +++ b/docs/release-notes/eclair-vnext.md @@ -0,0 +1,61 @@ +# Eclair vnext + + + +## Major changes + + + +### API changes + + + +### Miscellaneous improvements and bug fixes + + + +## Verifying signatures + +You will need `gpg` and our release signing key 7A73FE77DE2C4027. Note that you can get it: + +- from our website: https://acinq.co/pgp/drouinf.asc +- from github user @sstone, a committer on eclair: https://api.github.com/users/sstone/gpg_keys + +To import our signing key: + +```sh +$ gpg --import drouinf.asc +``` + +To verify the release file checksums and signatures: + +```sh +$ gpg -d SHA256SUMS.asc > SHA256SUMS.stripped +$ sha256sum -c SHA256SUMS.stripped +``` + +## Building + +Eclair builds are deterministic. To reproduce our builds, please use the following environment (*): + +- Ubuntu 22.04 +- AdoptOpenJDK 11.0.22 +- Maven 3.9.2 + +Use the following command to generate the eclair-node package: + +```sh +mvn clean install -DskipTests +``` + +That should generate `eclair-node/target/eclair-node--XXXXXXX-bin.zip` with sha256 checksums that match the one we provide and sign in `SHA256SUMS.asc` + +(*) You may be able to build the exact same artefacts with other operating systems or versions of JDK 11, we have not tried everything. + +## Upgrading + +This release is fully compatible with previous eclair versions. You don't need to close your channels, just stop eclair, upgrade and restart. + +## Changelog + + diff --git a/eclair-core/pom.xml b/eclair-core/pom.xml index 0b301fba06..05526216a2 100644 --- a/eclair-core/pom.xml +++ b/eclair-core/pom.xml @@ -21,7 +21,7 @@ fr.acinq.eclair eclair_2.13 - 0.11.0 + 0.11.1-SNAPSHOT eclair-core_2.13 diff --git a/eclair-front/pom.xml b/eclair-front/pom.xml index e978efc5bc..41e58d58a1 100644 --- a/eclair-front/pom.xml +++ b/eclair-front/pom.xml @@ -21,7 +21,7 @@ fr.acinq.eclair eclair_2.13 - 0.11.0 + 0.11.1-SNAPSHOT eclair-front_2.13 diff --git a/eclair-node/pom.xml b/eclair-node/pom.xml index 660427027d..9a6e3916b3 100644 --- a/eclair-node/pom.xml +++ b/eclair-node/pom.xml @@ -21,7 +21,7 @@ fr.acinq.eclair eclair_2.13 - 0.11.0 + 0.11.1-SNAPSHOT eclair-node_2.13 diff --git a/pom.xml b/pom.xml index 8a5d46cf6d..66407b699b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ fr.acinq.eclair eclair_2.13 - 0.11.0 + 0.11.1-SNAPSHOT pom