Skip to content

Commit 992ec8c

Browse files
authored
Eclair v0.13.0 release (#3154)
1 parent f32e0b6 commit 992ec8c

File tree

8 files changed

+275
-183
lines changed

8 files changed

+275
-183
lines changed

.mvn/maven.config

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
-Daether.trustedChecksumsSource.summaryFile=true
33
-Daether.trustedChecksumsSource.summaryFile.basedir=${session.rootDirectory}/.mvn/checksums/
44
# post processor: trusted checksums
5-
-Daether.artifactResolver.postProcessor.trustedChecksums=true
5+
-Daether.artifactResolver.postProcessor.trustedChecksums=false
66
-Daether.artifactResolver.postProcessor.trustedChecksums.checksumAlgorithms=SHA-256
77
-Daether.artifactResolver.postProcessor.trustedChecksums.failIfMissing=true
88
-Daether.artifactResolver.postProcessor.trustedChecksums.snapshots=false
9+
# Uncomment the following line to generate checksums
10+
# -Daether.artifactResolver.postProcessor.trustedChecksums.record=true

docs/release-notes/eclair-v0.13.0.md

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

docs/release-notes/eclair-vnext.md

Lines changed: 0 additions & 174 deletions
This file was deleted.

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.13.0-SNAPSHOT</version>
24+
<version>0.13.0</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.13.0-SNAPSHOT</version>
24+
<version>0.13.0</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.13.0-SNAPSHOT</version>
24+
<version>0.13.0</version>
2525
</parent>
2626

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

eclair-node/src/main/scala/fr/acinq/eclair/Boot.scala

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@ import scala.util.{Failure, Success}
3333
*/
3434
object Boot extends App with Logging {
3535
try {
36-
if (!System.getProperty("eclair.allow-unsafe-startup", "false").toBooleanOption.contains(true)) {
37-
throw new RuntimeException("This version of eclair is unsafe to use: please wait for the next official release to update your node.")
38-
}
39-
4036
val datadir = new File(System.getProperty("eclair.datadir", System.getProperty("user.home") + "/.eclair"))
4137
val config = NodeParams.loadConfiguration(datadir)
4238

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.13.0-SNAPSHOT</version>
23+
<version>0.13.0</version>
2424
<packaging>pom</packaging>
2525

2626
<modules>

0 commit comments

Comments
 (0)