Skip to content

Commit

Permalink
chore: Bump version to 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rm3l committed Apr 10, 2021
1 parent 04e39d1 commit 2f6e134
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ You can then access the GraphiQL browser by heading to http://localhost:8080/gra
2. Run the Backend GraphQL API

```sh
java -jar backend/api/build/libs/dev-feed-api-1.8.0.jar
java -jar backend/api/build/libs/dev-feed-api-1.9.0.jar
```

You can then access the GraphiQL browser by heading to http://localhost:8080/graphiql
Expand Down
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ RUN ./gradlew build --info

FROM adoptopenjdk:16-jdk-openj9

COPY --from=builder /dev-feed-backend/api/build/libs/dev-feed-api-1.8.0.jar /app.jar
COPY --from=builder /dev-feed-backend/api/build/libs/dev-feed-api-1.9.0.jar /app.jar

# /graphql and /graphiql endpoints
EXPOSE 8080
Expand Down
2 changes: 1 addition & 1 deletion backend/Procfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web: java -Dserver.port=$PORT -Dmanagement.port=$PORT -Dmanagement.security.enabled=true $JAVA_OPTS -Dcrawlers.task.fetch-articles.max-age-days=90 -jar api/build/libs/dev-feed-api-1.8.0.jar
web: java -Dserver.port=$PORT -Dmanagement.port=$PORT -Dmanagement.security.enabled=true $JAVA_OPTS -Dcrawlers.task.fetch-articles.max-age-days=90 -jar api/build/libs/dev-feed-api-1.9.0.jar
2 changes: 1 addition & 1 deletion backend/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ subprojects {
apply plugin: "org.jetbrains.kotlin.jvm"

group = 'org.rm3l'
version = '1.8.0'
version = '1.9.0'

repositories {
jcenter()
Expand Down
2 changes: 1 addition & 1 deletion backend/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@

set -eux

docker image build -t org.rm3l/dev-feed-api:1.8.0 .
docker image build -t org.rm3l/dev-feed-api:1.9.0 .
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ import picocli.CommandLine.ParameterException
@CommandLine.Command(
description = ["Fetch articles"],
mixinStandardHelpOptions = true,
version = ["1.8.0"],
version = ["1.9.0"],
subcommands = [DevFeedCrawlerCliRdbms::class, DevFeedCrawlerCliMongo::class])
class DevFeedCrawlerCliRunner : Runnable {

Expand Down
2 changes: 1 addition & 1 deletion backend/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
set -eux

docker container rm -f dev-feed-api >/dev/null 2>&1 || true
docker container run -d --rm --name dev-feed-api -p 8080:8080 -p 8081:8081 -t org.rm3l/dev-feed-api:1.8.0
docker container run -d --rm --name dev-feed-api -p 8080:8080 -p 8081:8081 -t org.rm3l/dev-feed-api:1.9.0
docker container logs -f dev-feed-api

0 comments on commit 2f6e134

Please sign in to comment.