Skip to content

Commit a483dd0

Browse files
authored
Make builds reproducible (#98)
We simply need to use a fixed build timestamp to make our build reproducible.
1 parent 7514347 commit a483dd0

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,11 @@ Our goal is not to re-implement a full Bitcoin node but to build a library that
5252
<dependency>
5353
<groupId>fr.acinq</groupId>
5454
<artifactId>bitcoin-lib_2.13</artifactId>
55-
<version>0.27</version>
55+
<version>0.43.2</version>
5656
</dependency>
5757
</dependencies>
5858
```
5959

60-
The latest snapshot (development) version is 0.28-SNAPSHOT, the latest released version is 0.27.
61-
6260
## libsecp256k1 support
6361

6462
Bitcoin-lib embeds JNI bindings for libsecp256k1 through [secp256k1-kmp](https://github.com/ACINQ/secp256k1-kmp/).

pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
<groupId>fr.acinq</groupId>
44
<artifactId>bitcoin-lib_2.13</artifactId>
55
<packaging>jar</packaging>
6-
<version>0.43.1</version>
6+
<version>0.43.2</version>
77
<description>Simple Scala Bitcoin library</description>
88
<url>https://github.com/ACINQ/bitcoin-lib</url>
99
<name>bitcoin-lib</name>
1010

1111
<properties>
12+
<project.build.outputTimestamp>2020-01-01T00:00:00Z</project.build.outputTimestamp>
1213
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1314
<scala.version>2.13.11</scala.version>
1415
<scala.version.short>2.13</scala.version.short>

0 commit comments

Comments
 (0)