Skip to content

Commit

Permalink
Bumping version number for 1.1.2 release
Browse files Browse the repository at this point in the history
Signed-off-by: John Henderson <john.henderson@shareandcharge.com>
  • Loading branch information
John Henderson committed Dec 17, 2020
1 parent 472a4e6 commit 396e4b5
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# OCN Node Changelog

## 1.1.2
### Dec 17, 2020

Fixes issue where ocn-node startup could fail if behind a load balancer or gateway (ocn-node issue #25)

## 1.1.1
### Nov 07, 2020

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ COPY build /ocn-node
COPY src/main/resources/* /ocn-node/
WORKDIR /ocn-node

CMD ["java", "-jar", "./libs/ocn-node-1.1.1.jar"]
CMD ["java", "-jar", "./libs/ocn-node-1.1.2.jar"]
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ see the subsequent section that follows.

Once downloaded, extract the contents of the archive and change directory:
```
tar zxvf ocn-node-1.1.1.tar.gz
cd ocn-node-1.1-1
tar zxvf ocn-node-1.1.2.tar.gz
cd ocn-node-1.1-2
```

Now we can run our node:
```
java -jar ocn-node-1.1.1.jar
java -jar ocn-node-1.1.2.jar
```

### Configuration
Expand Down Expand Up @@ -156,7 +156,7 @@ Edit the service file to match your environment, replacing the user and properti
```
[Service]
User=ubuntu
WorkingDirectory=/home/ubuntu/ocn-node-1.1.1
WorkingDirectory=/home/ubuntu/ocn-node-1.1.2
ExecStart=/usr/bin/java -jar -Dspring.config.location=application.custom-prod-env.properties ocn-node-1.1.0.jar
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ plugins {
}

group = "snc.openchargingnetwork.node"
version = "1.1.1"
version = "1.1.2"
java.sourceCompatibility = JavaVersion.VERSION_1_8

val snippetsDir = "build/generated-snippets"
Expand Down
4 changes: 2 additions & 2 deletions infra/ocn-node.service
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ After=network-online.target
[Service]
Type=simple
User=<USER>
WorkingDirectory=/home/<USER>/ocn-node-1.1.1
ExecStart=/usr/bin/java -jar -Dspring.config.location=application.dev.properties ocn-node-1.1.1
WorkingDirectory=/home/<USER>/ocn-node-1.1.2
ExecStart=/usr/bin/java -jar -Dspring.config.location=application.dev.properties ocn-node-1.1.2
Restart=on-failure

[Install]
Expand Down

0 comments on commit 396e4b5

Please sign in to comment.