Skip to content

Commit a3aa875

Browse files
committed
v16.23.1
1 parent 0b2d6aa commit a3aa875

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

.github/workflows/release.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ jobs:
2424
run: |
2525
# Obtain distribution
2626
wget -N -q \
27-
https://github.com/schemacrawler/SchemaCrawler/releases/download/v16.22.3/schemacrawler-16.22.3-bin.zip
28-
test -f schemacrawler-16.22.3-bin.zip && echo "Downloaded binary distribution"
27+
https://github.com/schemacrawler/SchemaCrawler/releases/download/v16.23.1/schemacrawler-16.23.1-bin.zip
28+
test -f schemacrawler-16.23.1-bin.zip && echo "Downloaded binary distribution"
2929
mkdir ./schemacrawler-lib
3030
mkdir ./schemacrawler-icons
31-
unzip schemacrawler-16.22.3-bin.zip
31+
unzip schemacrawler-16.23.1-bin.zip
3232
cp \
33-
./schemacrawler-16.22.3-bin/lib/* \
33+
./schemacrawler-16.23.1-bin/lib/* \
3434
./schemacrawler-lib/
3535
cp \
36-
./schemacrawler-16.22.3-bin/logos/* \
36+
./schemacrawler-16.23.1-bin/logos/* \
3737
./schemacrawler-icons/
3838
ls -lR ./schemacrawler-lib/
3939
ls -lR ./schemacrawler-icons/
@@ -85,11 +85,11 @@ jobs:
8585
mkdir ./schemacrawler-installers
8686
jpackage --verbose "@jpackage.cfg" "@jpackage-linux.cfg"
8787
mv \
88-
./schemacrawler-installers/schemacrawler_16.22.3-1_amd64.deb \
89-
./schemacrawler-installers/schemacrawler-16.22.3.deb
88+
./schemacrawler-installers/schemacrawler_16.23.1-1_amd64.deb \
89+
./schemacrawler-installers/schemacrawler-16.23.1.deb
9090
sha256sum -b \
91-
./schemacrawler-installers/schemacrawler-16.22.3.deb \
92-
> ./schemacrawler-installers/schemacrawler-16.22.3.deb.SHA256
91+
./schemacrawler-installers/schemacrawler-16.23.1.deb \
92+
> ./schemacrawler-installers/schemacrawler-16.23.1.deb.SHA256
9393
ls -l ./schemacrawler-installers
9494
9595
# Build Linux Installer - SAVE INSTALLER
@@ -132,8 +132,8 @@ jobs:
132132
mkdir ./schemacrawler-installers
133133
jpackage --verbose "@jpackage.cfg" "@jpackage-windows.cfg"
134134
sha256sum -b \
135-
./schemacrawler-installers/SchemaCrawler-16.22.3.msi \
136-
> ./schemacrawler-installers/SchemaCrawler-16.22.3.msi.SHA256
135+
./schemacrawler-installers/SchemaCrawler-16.23.1.msi \
136+
> ./schemacrawler-installers/SchemaCrawler-16.23.1.msi.SHA256
137137
ls -l ./schemacrawler-installers
138138
139139
# Build Windows Installer - SAVE INSTALLER
@@ -174,7 +174,7 @@ jobs:
174174
shell: pwsh
175175
run: |
176176
# Download binary distribution
177-
Invoke-WebRequest -OutFile schemacrawler-16.22.3-bin.zip -Uri https://github.com/schemacrawler/SchemaCrawler/releases/download/v16.22.3/schemacrawler-16.22.3-bin.zip
177+
Invoke-WebRequest -OutFile schemacrawler-16.23.1-bin.zip -Uri https://github.com/schemacrawler/SchemaCrawler/releases/download/v16.23.1/schemacrawler-16.23.1-bin.zip
178178
179179
# Release and Publish with JReleaser
180180
- id: jreleaser

jpackage.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
--input ./schemacrawler-lib
2-
--main-jar schemacrawler-16.22.3.jar
2+
--main-jar schemacrawler-16.23.1.jar
33
--main-class schemacrawler.Main
44
--name SchemaCrawler
5-
--app-version 16.22.3
6-
--copyright "Copyright (c) 2000-2024, Sualeh Fatehi <[email protected]>."
5+
--app-version 16.23.1
6+
--copyright "Copyright (c) 2000-2025, Sualeh Fatehi <[email protected]>."
77
--description "Free database schema discovery and comprehension tool"
88
--dest ./schemacrawler-installers
99
--vendor "Sualeh Fatehi"

jreleaser.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
project:
22
name: SchemaCrawler
3-
version: 16.22.3
3+
version: 16.23.1
44
description: Free database schema discovery and comprehension tool
55
longDescription: >
66
SchemaCrawler is a free database schema discovery and comprehension tool.
@@ -11,7 +11,7 @@ project:
1111
SchemaCrawler also generates schema diagrams. You can execute scripts in any
1212
standard scripting language against your database. You can find potential schema
1313
design issues with lint.
14-
copyright: Copyright (c) 2000-2024, Sualeh Fatehi.
14+
copyright: Copyright (c) 2000-2025, Sualeh Fatehi.
1515
inceptionYear: 2000
1616
links:
1717
homepage: https://www.schemacrawler.com/

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-installers</artifactId>
9-
<version>16.22.3</version>
9+
<version>16.23.1</version>
1010
<packaging>pom</packaging>
1111
<name>SchemaCrawler Multi-platform Installers</name>
1212
</project>

0 commit comments

Comments
 (0)