Skip to content

Commit

Permalink
v16.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sualeh committed Jun 26, 2020
1 parent 9e46b02 commit 239c0b5
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create-release.outputs.upload_url }}
asset_path: ./target/schemacrawler-webapp-16.9.1.1.jar
asset_name: schemacrawler-webapp-16.9.1.1.jar
asset_path: ./target/schemacrawler-webapp-16.9.2.1.jar
asset_name: schemacrawler-webapp-16.9.2.1.jar
asset_content_type: application/zip

# CREATE AND PUBLISH DOCKER IMAGE
Expand All @@ -81,7 +81,7 @@ jobs:
run: |
docker version
docker build -t schemacrawler/schemacrawler-webapp .
docker tag schemacrawler/schemacrawler-webapp schemacrawler/schemacrawler-webapp:v16.9.1.1
docker tag schemacrawler/schemacrawler-webapp schemacrawler/schemacrawler-webapp:v16.9.2.1
docker tag schemacrawler/schemacrawler-webapp schemacrawler/schemacrawler-webapp:latest
docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD"
docker push schemacrawler/schemacrawler-webapp
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@

FROM openjdk:8-jdk-alpine

ARG SCHEMACRAWLER_VERSION=16.9.1
ARG SCHEMACRAWLER_WEBAPP_VERSION=16.9.1.1
ARG SCHEMACRAWLER_VERSION=16.9.2
ARG SCHEMACRAWLER_WEBAPP_VERSION=16.9.2.1

LABEL \
"us.fatehi.schemacrawler.product-version"="SchemaCrawler ${SCHEMACRAWLER_VERSION}" \
Expand Down
4 changes: 2 additions & 2 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.9.1.1</version>
<version>16.9.2.1</version>
<packaging>jar</packaging>

<name>SchemaCrawler Web Application</name>
Expand Down Expand Up @@ -66,7 +66,7 @@
<dependency>
<groupId>us.fatehi</groupId>
<artifactId>schemacrawler-sqlite</artifactId>
<version>16.9.1</version>
<version>16.9.2</version>
</dependency>

</dependencies>
Expand Down
12 changes: 6 additions & 6 deletions src/main/resources/static/css/style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
body {
padding-left: 3.0rem;
padding-right: 3.0rem;
padding-bottom: 3.0rem;
padding-left: 3rem;
padding-right: 3rem;
padding-bottom: 3rem;
}

@media (max-width: 767px) {
Expand All @@ -12,8 +12,8 @@ body {
}

#page-content h1 {
font-size: 2.0rem;
margin-top: 2.0rem;
font-size: 2rem;
margin-top: 2rem;
color: rgb(92, 92, 92);
}

Expand All @@ -35,6 +35,6 @@ body {
}

#banner h1 {
font-size: 3.0rem;
font-size: 3rem;
font-family: "Palatino Linotype", Georgia, "Times New Roman", serif;
}
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 @@ -7,7 +7,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.9.1.1</span><br />
<span>SchemaCrawler Web Application, version 16.9.2.1</span><br />
&copy;
<span property="dc:dateCopyrighted">2000-2020</span>
<span property="dc:creator">Sualeh Fatehi &lt;sualeh@hotmail.com&gt;.</span>
Expand Down

0 comments on commit 239c0b5

Please sign in to comment.