From cb354c194d163390258609a17baede3b8f182a69 Mon Sep 17 00:00:00 2001 From: Renato Henrique Date: Sun, 16 Jan 2022 12:32:16 -0300 Subject: [PATCH] Up version --- README.md | 2 +- pom.xml | 2 +- .../springboot/configurations/SpringWebConfiguration.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f09163bd..f1a4547b 100644 --- a/README.md +++ b/README.md @@ -135,7 +135,7 @@ Creating database migration files > # to change the value of some environment variable at runtime > # on execution, just pass it as a parameter. (like --SERVER_PORT=80). -> $ java -jar api-3.0.4.RELEASE.jar --SERVER_PORT=80 +> $ java -jar api-4.0.1.RELEASE.jar --SERVER_PORT=80 > ``` > > > [All options of `aplication.properties` here](https://docs.spring.io/spring-boot/docs/current/reference/html/common-application-properties.html). diff --git a/pom.xml b/pom.xml index 7781f2c5..356a4155 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ com.github.throyer.common.spring-boot api - 4.0.0 + 4.0.1 CRUD API Exemplo de api simples com Spring Boot diff --git a/src/main/java/com/github/throyer/common/springboot/configurations/SpringWebConfiguration.java b/src/main/java/com/github/throyer/common/springboot/configurations/SpringWebConfiguration.java index 755b9e02..ae676b55 100644 --- a/src/main/java/com/github/throyer/common/springboot/configurations/SpringWebConfiguration.java +++ b/src/main/java/com/github/throyer/common/springboot/configurations/SpringWebConfiguration.java @@ -18,7 +18,7 @@ @Configuration @OpenAPIDefinition(info = @Info( title = "Common CRUD API", - version = "v4.0.0", + version = "v4.0.1", description = """ A complete user registry, with access permissions, JWT token, integration and unit tests, using