Skip to content
This repository was archived by the owner on Nov 5, 2022. It is now read-only.

Commit f69c535

Browse files
authored
Merge pull request #42 from cyclic-reference/v1.1.2
V1.1.2
2 parents 502e4db + 0ab39f9 commit f69c535

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

angular4/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

angular4/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wiki",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"private": true,
55
"description": "Project used to demonstrate capabilities of the Vert.x Library",
66
"scripts": {

angular4/src/app/app.component.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

angular4/src/app/app.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {BehaviorSubject} from "rxjs/BehaviorSubject";
1010
template: require('./app.component.htm')
1111
})
1212
export class AppComponent {
13-
versionNumber: string = "v1.1.1";
13+
versionNumber: string = "v1.1.2";
1414
loadEnd: ReplaySubject<boolean> = new ReplaySubject<boolean>(1);
1515
loadStart: ReplaySubject<boolean> = new ReplaySubject<boolean>(1);
1616
loading: BehaviorSubject<boolean> = new BehaviorSubject<boolean>(false);

docker-compose-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ services:
44
build:
55
dockerfile: Dockerfile-dev
66
context: ./angular4
7-
image: alexsimons/vertx-web-content:1.1.1
7+
image: alexsimons/vertx-web-content:1.1.2
88
ports:
99
- "3000:3000"
1010
volumes:
1111
- ./angular4:/app
1212
web-service:
1313
build: ./web-service
14-
image: alexsimons/vertx-web-service:1.1.1
14+
image: alexsimons/vertx-web-service:1.1.2
1515
ports:
1616
- "8989:8989"
1717
mongo:

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
build: ./web-service
55
ports:
66
- 443:8989
7-
image: alexsimons/vertx-web-service:1.1.1
7+
image: alexsimons/vertx-web-service:1.1.2
88
mongo:
99
image: mongo:latest
1010
volumes:

web-service/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ WORKDIR /app
2424

2525
COPY --from=packager /app/build/libs /app
2626

27-
ENTRYPOINT ["java", "-jar", "wiki-1.1.1.jar"]
27+
ENTRYPOINT ["java", "-jar", "wiki-1.1.2.jar"]
2828

2929

3030

web-service/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ apply plugin: 'application'
99
apply plugin: 'com.github.johnrengelman.shadow'
1010

1111

12-
version = '1.1.1'
12+
version = '1.1.2'
1313
sourceCompatibility = 1.8
1414

1515
repositories {

0 commit comments

Comments
 (0)