Skip to content

Commit 5ebd23a

Browse files
committed
solution: release v0.11
1 parent e1170dd commit 5ebd23a

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

README.adoc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
ifdef::env-github[]
44
:imagesdir: https://raw.githubusercontent.com/emeraldpay/dshackle/master/docs/assets
55
endif::[]
6+
:version: 0.11.0
7+
:version-short: 0.11
68

79
image:https://github.com/emeraldpay/dshackle/workflows/Tests/badge.svg["Unit Tests"]
810
image:https://codecov.io/gh/emeraldpay/dshackle/branch/master/graph/badge.svg["Coverage",link="https://codecov.io/gh/emeraldpay/dshackle"]
@@ -136,9 +138,9 @@ export INFURA_USER=...
136138
----
137139

138140
.Run Dshackle
139-
[source,bash]
141+
[source,bash,subs="attributes"]
140142
----
141-
docker run -p 2449:2449 -p 8545:8545 -v $(pwd):/etc/dshackle -e "INFURA_USER=$INFURA_USER" emeraldpay/dshackle:0.10
143+
docker run -p 2449:2449 -p 8545:8545 -v $(pwd):/etc/dshackle -e "INFURA_USER=$INFURA_USER" emeraldpay/dshackle:{version-short}
142144
----
143145

144146
Now it listens on port 2449 at the localhost and can be connected from any gRPC compatible client.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ group = 'io.emeraldpay.dshackle'
2727
// Version schema:
2828
// x.x.x for production, following SemVer model
2929
// x.x.x-SNAPSHOT for development
30-
version = '0.11.0-SNAPSHOT'
30+
version = '0.11.0'
3131

3232
java {
3333
sourceCompatibility = JavaVersion.VERSION_13

docs/02-quick-start.adoc

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
== Quick Start
2+
:version: 0.11.0
3+
:version-short: 0.11
24

35
=== Prerequisites
46

5-
Dshackle is designed for the cloud environment and supposed to be used withing Docker and/or Kubernetes. However, it's a JVM
6-
based application and, therefore, can be used in most of the standard environments where Java Virtual Machine can be installed.
7+
Dshackle is designed for the cloud environment and supposed to be used withing Docker and/or Kubernetes.
8+
However, it's a JVM based application and, therefore, can be used in most of the standard environments where Java Virtual Machine can be installed.
79

810
We're going to use Docker image for this quick start.
911

@@ -86,9 +88,9 @@ export INFURA_USER=...
8688
----
8789

8890
.Run Dshackle
89-
[source,bash]
91+
[source,bash,subs="attributes"]
9092
----
91-
docker run -p 2449:2449 -p 8545:8545 -v $(pwd):/etc/dshackle -e "INFURA_USER=$INFURA_USER" emeraldpay/dshackle:0.10
93+
docker run -p 2449:2449 -p 8545:8545 -v $(pwd):/etc/dshackle -e "INFURA_USER=$INFURA_USER" emeraldpay/dshackle:{version-short}
9294
----
9395

9496
==== Access using JSON RPC

docs/05-start.adoc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
== Launch a server
2+
:version: 0.11.0
3+
:version-short: 0.11
24

35
=== Docker
46

57
Prepare configuration files `dshackle.yaml` and `upstreams.yaml` in the current directory, then launch docker as:
68

7-
[source,bash]
9+
[source,bash,subs="attributes"]
810
----
9-
docker run -p 2449:2449 -v $(pwd):/config -w /config emeraldpay/dshackle:0.10
11+
docker run -p 2449:2449 -v $(pwd):/config -w /config emeraldpay/dshackle:{version-short}
1012
----
1113

1214
=== Install & Run manually

0 commit comments

Comments
 (0)