Skip to content

Commit

Permalink
Merge pull request #21 from jadwahab/main
Browse files Browse the repository at this point in the history
  • Loading branch information
jadwahab authored Nov 23, 2022
2 parents 870eb55 + b761c29 commit 5b211e3
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ out/

### VS Code ###
.vscode/
.history

# Package files
*.jar
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ RUN gradle assemble
FROM openjdk:18-oraclelinux8
WORKDIR /app
COPY --from=build /home/gradle/src/app/build/libs/*.jar /app/
ENTRYPOINT ["sh","-c","java -jar /app/headersv-app-2.0.2.jar"]
ENTRYPOINT ["sh","-c","java -jar /app/headersv-app-2.0.4.jar"]

Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
public class HeaderSVApplication {

public static void main(String[] args) {
System.out.println("HeaderSV Listener 2.0.0");
System.out.println("HeaderSV Listener 2.0.4");
SpringApplication.run(HeaderSVApplication.class, args);
}

Expand Down
2 changes: 1 addition & 1 deletion core/README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ bitcoinJVersion=1.0.2
JCLVersion=2.0.0
# headerSV dependency:
headerSVVersion=2.0.0
headerSVVersion=2.0.4
```
, and then you reference them in your *build.gradle* file:

Expand Down
2 changes: 1 addition & 1 deletion docker-compose-prebuilt-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "3.7"

services:
headersv:
image: bitcoinsv/block-headers-client:2.0.2
image: bitcoinsv/block-headers-client:2.0.4
volumes:
- headersv-data:/tmp/jcl
environment:
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
hsvGroup=io.bitcoinsv.headerSV
hsvVersion=2.0.2
hsvVersion=2.0.4
hsvName=block-headers-client
# JCL dependency:
JCLVersion=2.2.0
Expand Down
2 changes: 1 addition & 1 deletion rest-client/README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ bitcoinJVersion=1.0.2
JCLVersion=2.0.0
# headerSV dependency:
headerSVVersion=2.0.0
headerSVVersion=2.0.4
```
, and then you reference them in your *build.gradle* file:

Expand Down
2 changes: 1 addition & 1 deletion rest/README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ bitcoinJVersion=1.0.2
JCLVersion=2.0.0
# headerSV dependency:
headerSVVersion=2.0.0
headerSVVersion=2.0.4
```
, and then you reference them in your *build.gradle* file:

Expand Down

0 comments on commit 5b211e3

Please sign in to comment.