Skip to content

Commit

Permalink
v1.0.11 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Bob Weigel committed Oct 8, 2021
1 parent 6ce6890 commit ec1b4f1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.md
Expand Up @@ -43,24 +43,24 @@ Installation and startup commands are given below the binary packages and docker
OS-X x64:

```bash
curl -L https://github.com/hapi-server/server-nodejs/releases/download/v1.0.10/hapi-server-v1.0.10-darwin-x64.tgz | tar zxf -
cd hapi-server-v1.0.10
curl -L https://github.com/hapi-server/server-nodejs/releases/download/v1.0.11/hapi-server-v1.0.11-darwin-x64.tgz | tar zxf -
cd hapi-server-v1.0.11
./hapi-server --open

Linux x64:

```bash
curl -L https://github.com/hapi-server/server-nodejs/releases/download/v1.0.10/hapi-server-v1.0.10-linux-x64.tgz | tar zxf -
cd hapi-server-v1.0.10
curl -L https://github.com/hapi-server/server-nodejs/releases/download/v1.0.11/hapi-server-v1.0.11-linux-x64.tgz | tar zxf -
cd hapi-server-v1.0.11
./hapi-server --open
```

Docker:

```
docker pull rweigel/hapi-server:v1.0.10
docker run -dit --name hapi-server-v1.0.10 --expose 8999 -p 8999:8999 rweigel/hapi-server:v1.0.10
docker exec -it hapi-server-v1.0.10 ./hapi-server
docker pull rweigel/hapi-server:v1.0.11
docker run -dit --name hapi-server-v1.0.11 --expose 8999 -p 8999:8999 rweigel/hapi-server:v1.0.11
docker exec -it hapi-server-v1.0.11 ./hapi-server
# Open http://localhost:8999/TestData/hapi in a web browser
```
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@hapi-server/server",
"version": "1.0.10",
"version": "1.0.11",
"license": "MIT",
"engine-strict": true,
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion pkg/Makefile
Expand Up @@ -27,7 +27,7 @@ PYTHONV=3.8.5
# Do not modify following line. Version set by call to
# npm run version
# which uses version in package.json
VERSION=v1.0.10
VERSION=v1.0.11

# To get other OS-X versions, see
# https://developer.apple.com/forums/thread/111322
Expand Down

0 comments on commit ec1b4f1

Please sign in to comment.