Skip to content

Commit

Permalink
v16.19.11
Browse files Browse the repository at this point in the history
  • Loading branch information
sualeh committed Jun 4, 2023
1 parent b166771 commit f0af8e6
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ This is a Spring Boot web application with a Bootstrap user interface, with sour
- Start the application from Maven, run
`mvn -Dspring-boot.run.fork=false spring-boot:run`
- Start application from the jar file, run
`java -jar target/schemacrawler-webapp-16.19.10.1.jar`
`java -jar target/schemacrawler-webapp-16.19.11.1.jar`
- Start the application from the local image in a Docker container, run
`docker run -d --rm --env AWS_ACCESS_KEY_ID=xxxxx --env AWS_SECRET=xxxxx --env AWS_S3_BUCKET=xxxxx -p 8080:8080 -t schemacrawler/schemacrawler-webapp`

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
run: |
# Build
docker build \
-t schemacrawler/schemacrawler-webapp:v16.19.10.1 \
-t schemacrawler/schemacrawler-webapp:v16.19.11.1 \
-t schemacrawler/schemacrawler-webapp:latest \
.
Expand All @@ -75,7 +75,7 @@ jobs:
docker.io/schemacrawler/schemacrawler-webapp:${{ github.sha }}
docker tag \
schemacrawler/schemacrawler-webapp \
docker.io/schemacrawler/schemacrawler-webapp:v16.19.10.1
docker.io/schemacrawler/schemacrawler-webapp:v16.19.11.1
docker tag \
schemacrawler/schemacrawler-webapp \
docker.io/schemacrawler/schemacrawler-webapp:latest
Expand Down Expand Up @@ -105,6 +105,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create-release.outputs.upload_url }}
asset_path: ./target/schemacrawler-webapp-16.19.10.1.jar
asset_name: schemacrawler-webapp-16.19.10.1.jar
asset_path: ./target/schemacrawler-webapp-16.19.11.1.jar
asset_name: schemacrawler-webapp-16.19.11.1.jar
asset_content_type: application/zip
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@

FROM eclipse-temurin:17-alpine

ARG SCHEMACRAWLER_VERSION=16.19.10
ARG SCHEMACRAWLER_WEBAPP_VERSION=16.19.10.1
ARG SCHEMACRAWLER_VERSION=16.19.11
ARG SCHEMACRAWLER_WEBAPP_VERSION=16.19.11.1

LABEL \
"maintainer"="Sualeh Fatehi <sualeh@hotmail.com>" \
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-webapp</artifactId>
<version>16.19.10.1</version>
<version>16.19.11.1</version>
<packaging>jar</packaging>

<name>SchemaCrawler Web Application</name>
Expand All @@ -23,7 +23,7 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<docker.skip>true</docker.skip>
<java.version>17</java.version>
<testcontainers.version>1.18.1</testcontainers.version>
<testcontainers.version>1.18.3</testcontainers.version>
</properties>

<dependencyManagement>
Expand All @@ -45,7 +45,7 @@
<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-parent</artifactId>
<version>16.19.10</version>
<version>16.19.11</version>
<scope>import</scope>
<type>pom</type>
</dependency>
Expand Down Expand Up @@ -124,7 +124,7 @@
<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-sqlite</artifactId>
<version>16.19.10</version>
<version>16.19.11</version>
</dependency>


Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/api/schemacrawler-web-application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.0.3
info:
title: SchemaCrawler Web Application
description: Create a SchemaCrawler schema diagram from an uploaded SQLite database file
version: '16.19.10.1'
version: '16.19.11.1'
license:
name: Eclipse Public License (EPL-2.0)
url: https://www.eclipse.org/legal/epl-2.0/
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/banner.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@


SchemaCrawler Web Application v16.19.10.1
SchemaCrawler Web Application v16.19.11.1
Spring Boot ${spring-boot.version}
2 changes: 1 addition & 1 deletion src/main/resources/templates/fragments/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</div>
<div id="footer" xmlns:dc="http://purl.org/dc/elements/1.1/" class="small">
<p id="copyright" property="dc:rights">
<span>SchemaCrawler Web Application, version 16.19.10.1</span><br />
<span>SchemaCrawler Web Application, version 16.19.11.1</span><br />
&copy;
<span property="dc:dateCopyrighted">2000-2023</span>
<span property="dc:creator">Sualeh Fatehi &lt;sualeh@hotmail.com&gt;.</span>
Expand Down

0 comments on commit f0af8e6

Please sign in to comment.