Skip to content

Commit 6690119

Browse files
committed
Documentation
1 parent 934c85e commit 6690119

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,33 +41,33 @@ Installation and startup commands are given below the binary packages and docker
4141
OS-X x64:
4242

4343
```bash
44-
curl -L https://github.com/hapi-server/server-nodejs/releases/download/v0.9.4/hapi-server-v0.9.4-darwin-x64.tgz | tar zxf -
45-
cd hapi-server-v0.9.4
44+
curl -L https://github.com/hapi-server/server-nodejs/releases/download/v0.9.5/hapi-server-v0.9.5-darwin-x64.tgz | tar zxf -
45+
cd hapi-server-v0.9.5
4646
./hapi-server --open
4747
```
4848

4949
Linux x64:
5050

5151
```bash
52-
curl -L https://github.com/hapi-server/server-nodejs/releases/download/v0.9.4/hapi-server-v0.9.4-linux-x64.tgz | tar zxf -
53-
cd hapi-server-v0.9.4
52+
curl -L https://github.com/hapi-server/server-nodejs/releases/download/v0.9.5/hapi-server-v0.9.5-linux-x64.tgz | tar zxf -
53+
cd hapi-server-v0.9.5
5454
./hapi-server --open
5555
```
5656

5757
Linux ARMv7l:
5858

5959
```bash
60-
curl -L https://github.com/hapi-server/server-nodejs/releases/download/v0.9.4/hapi-server-v0.9.4-linux-armv7l.tgz | tar zxf -
61-
cd hapi-server-v0.9.4
60+
curl -L https://github.com/hapi-server/server-nodejs/releases/download/v0.9.5/hapi-server-v0.9.5-linux-armv7l.tgz | tar zxf -
61+
cd hapi-server-v0.9.5
6262
./hapi-server --open
6363
```
6464

6565
Docker:
6666

6767
```
68-
docker pull rweigel/hapi-server:v0.9.4
69-
docker run -dit --name hapi-server-0.9.4 --expose 8999 -p 8999:8999 rweigel/hapi-server:v0.9.4
70-
docker exec -it hapi-server-v0.9.4 ./hapi-server
68+
docker pull rweigel/hapi-server:v0.9.5
69+
docker run -dit --name hapi-server-v0.9.5 --expose 8999 -p 8999:8999 rweigel/hapi-server:v0.9.5
70+
docker exec -it hapi-server-v0.9.5 ./hapi-server
7171
```
7272

7373
<a name="Examples"></a>
@@ -573,7 +573,7 @@ Install [nodejs](https://nodejs.org/en/download/) (tested with v6) using either
573573
574574
```bash
575575
# Install Node Version Manager
576-
curl https://raw.githubusercontent.com/creationix/nvm/v0.9.4/install.sh | bash
576+
curl https://raw.githubusercontent.com/creationix/nvm/v0.9.5/install.sh | bash
577577
578578
# Open new shell (see displayed instructions from above command)
579579

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hapi-server",
3-
"version": "0.9.4",
3+
"version": "0.9.5",
44
"license": "MIT",
55
"engine-strict": true,
66
"engines": {

pkg/Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,9 @@ release:
5353

5454
# When NodeJS and Python binaries do not need to be updated.
5555
update:
56-
sed -i '' 's/hapi-server-v[0-9]{1,}\.[0-9]{1,}\.[0-9]{1,}/hapi-server-$(VERSION)/g' tmp.md
57-
sed -i '' 's/\/v[0-9]{1,}\.[0-9]{1,}\.[0-9]{1,}\//\/$(VERSION)\//g' tmp.md
56+
sed -E -i '' 's/hapi-server-v[0-9]{1,}\.[0-9]{1,}\.[0-9]{1,}/hapi-server-$(VERSION)/g' ../README.md
57+
sed -E -i '' 's/hapi-server:v[0-9]{1,}\.[0-9]{1,}\.[0-9]{1,}/hapi-server:$(VERSION)/g' ../README.md
58+
sed -E -i '' 's/\/v[0-9]{1,}\.[0-9]{1,}\.[0-9]{1,}\//\/$(VERSION)\//g' ../README.md
5859
make package VERSION=$(VERSION) OS=darwin-x64
5960
make package VERSION=$(VERSION) OS=linux-x64
6061
make package VERSION=$(VERSION) OS=linux-armv7l

0 commit comments

Comments
 (0)