Skip to content

Commit af05a55

Browse files
authored
Back to dev (#3035)
After the v0.12.0 release.
1 parent 4df8cd0 commit af05a55

File tree

7 files changed

+1157
-4
lines changed

7 files changed

+1157
-4
lines changed

.mvn/checksums/checksums-central.sha256

Lines changed: 1085 additions & 0 deletions
Large diffs are not rendered by default.

.mvn/maven.config

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# trusted checksum source setup
2+
-Daether.trustedChecksumsSource.summaryFile=true
3+
-Daether.trustedChecksumsSource.summaryFile.basedir=${session.rootDirectory}/.mvn/checksums/
4+
# post processor: trusted checksums
5+
-Daether.artifactResolver.postProcessor.trustedChecksums=true
6+
-Daether.artifactResolver.postProcessor.trustedChecksums.checksumAlgorithms=SHA-256
7+
-Daether.artifactResolver.postProcessor.trustedChecksums.failIfMissing=true
8+
-Daether.artifactResolver.postProcessor.trustedChecksums.snapshots=false

docs/release-notes/eclair-vnext.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# Eclair vnext
2+
3+
<insert here a high-level description of the release>
4+
5+
## Major changes
6+
7+
<insert changes>
8+
9+
### API changes
10+
11+
<insert changes>
12+
13+
### Miscellaneous improvements and bug fixes
14+
15+
<insert changes>
16+
17+
## Verifying signatures
18+
19+
You will need `gpg` and our release signing key E04E48E72C205463. Note that you can get it:
20+
21+
- from our website: https://acinq.co/pgp/drouinf2.asc
22+
- from github user @sstone, a committer on eclair: https://api.github.com/users/sstone/gpg_keys
23+
24+
To import our signing key:
25+
26+
```sh
27+
$ gpg --import drouinf2.asc
28+
```
29+
30+
To verify the release file checksums and signatures:
31+
32+
```sh
33+
$ gpg -d SHA256SUMS.asc > SHA256SUMS.stripped
34+
$ sha256sum -c SHA256SUMS.stripped
35+
```
36+
37+
## Building
38+
39+
Eclair builds are deterministic. To reproduce our builds, please use the following environment (*):
40+
41+
- Ubuntu 24.04.1
42+
- Adoptium OpenJDK 21.0.6
43+
44+
Use the following command to generate the eclair-node package:
45+
46+
```sh
47+
./mvnw clean install -DskipTests
48+
```
49+
50+
That should generate `eclair-node/target/eclair-node-<version>-XXXXXXX-bin.zip` with sha256 checksums that match the one we provide and sign in `SHA256SUMS.asc`
51+
52+
(*) You may be able to build the exact same artefacts with other operating systems or versions of JDK 21, we have not tried everything.
53+
54+
## Upgrading
55+
56+
This release is fully compatible with previous eclair versions. You don't need to close your channels, just stop eclair, upgrade and restart.
57+
58+
## Changelog
59+
60+
<fill this section when publishing the release with `git log v0.12.0... --format=oneline --reverse`>

eclair-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>fr.acinq.eclair</groupId>
2323
<artifactId>eclair_2.13</artifactId>
24-
<version>0.12.0</version>
24+
<version>0.13.0-SNAPSHOT</version>
2525
</parent>
2626

2727
<artifactId>eclair-core_2.13</artifactId>

eclair-front/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>fr.acinq.eclair</groupId>
2323
<artifactId>eclair_2.13</artifactId>
24-
<version>0.12.0</version>
24+
<version>0.13.0-SNAPSHOT</version>
2525
</parent>
2626

2727
<artifactId>eclair-front_2.13</artifactId>

eclair-node/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<groupId>fr.acinq.eclair</groupId>
2323
<artifactId>eclair_2.13</artifactId>
24-
<version>0.12.0</version>
24+
<version>0.13.0-SNAPSHOT</version>
2525
</parent>
2626

2727
<artifactId>eclair-node_2.13</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<groupId>fr.acinq.eclair</groupId>
2222
<artifactId>eclair_2.13</artifactId>
23-
<version>0.12.0</version>
23+
<version>0.13.0-SNAPSHOT</version>
2424
<packaging>pom</packaging>
2525

2626
<modules>

0 commit comments

Comments
 (0)