Skip to content

Commit b761c29

Browse files
committed
bump version to v2.0.4
1 parent 0e27071 commit b761c29

File tree

8 files changed

+8
-7
lines changed

8 files changed

+8
-7
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ out/
3333

3434
### VS Code ###
3535
.vscode/
36+
.history
3637

3738
# Package files
3839
*.jar

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ RUN gradle assemble
88
FROM openjdk:18-oraclelinux8
99
WORKDIR /app
1010
COPY --from=build /home/gradle/src/app/build/libs/*.jar /app/
11-
ENTRYPOINT ["sh","-c","java -jar /app/headersv-app-2.0.2.jar"]
11+
ENTRYPOINT ["sh","-c","java -jar /app/headersv-app-2.0.4.jar"]
1212

app/src/main/java/io/bitcoinsv/headerSV/app/HeaderSVApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
public class HeaderSVApplication {
2525

2626
public static void main(String[] args) {
27-
System.out.println("HeaderSV Listener 2.0.0");
27+
System.out.println("HeaderSV Listener 2.0.4");
2828
SpringApplication.run(HeaderSVApplication.class, args);
2929
}
3030

core/README.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ bitcoinJVersion=1.0.2
3333
JCLVersion=2.0.0
3434
3535
# headerSV dependency:
36-
headerSVVersion=2.0.0
36+
headerSVVersion=2.0.4
3737
```
3838
, and then you reference them in your *build.gradle* file:
3939

docker-compose-prebuilt-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: "3.7"
33

44
services:
55
headersv:
6-
image: bitcoinsv/block-headers-client:2.0.2
6+
image: bitcoinsv/block-headers-client:2.0.4
77
volumes:
88
- headersv-data:/tmp/jcl
99
environment:

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
hsvGroup=io.bitcoinsv.headerSV
2-
hsvVersion=2.0.2
2+
hsvVersion=2.0.4
33
hsvName=block-headers-client
44
# JCL dependency:
55
JCLVersion=2.2.0

rest-client/README.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ bitcoinJVersion=1.0.2
2020
JCLVersion=2.0.0
2121
2222
# headerSV dependency:
23-
headerSVVersion=2.0.0
23+
headerSVVersion=2.0.4
2424
```
2525
, and then you reference them in your *build.gradle* file:
2626

rest/README.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ bitcoinJVersion=1.0.2
3939
JCLVersion=2.0.0
4040
4141
# headerSV dependency:
42-
headerSVVersion=2.0.0
42+
headerSVVersion=2.0.4
4343
```
4444
, and then you reference them in your *build.gradle* file:
4545

0 commit comments

Comments
 (0)