Skip to content

Commit 5d9e22c

Browse files
authored
Merge pull request #1639 from schemacrawler/v16.22.1
v16.22.1
2 parents bd47d99 + 9211701 commit 5d9e22c

File tree

43 files changed

+60
-60
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+60
-60
lines changed

.github/workflows/early-release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ jobs:
6161
SchemaCrawler ${{ github.event.release.tag_name }} early access release at last commit ${{ github.sha }}
6262
generate_release_notes: true
6363
files: |
64-
./schemacrawler-distrib/target/schemacrawler-16.21.4-distribution.zip
65-
./schemacrawler-distrib/target/schemacrawler-16.21.4-distribution.zip.SHA-512
66-
./schemacrawler-distrib/target/schemacrawler-16.21.4-bin.zip
67-
./schemacrawler-distrib/target/schemacrawler-16.21.4-bin.zip.SHA-512
64+
./schemacrawler-distrib/target/schemacrawler-16.22.1-distribution.zip
65+
./schemacrawler-distrib/target/schemacrawler-16.22.1-distribution.zip.SHA-512
66+
./schemacrawler-distrib/target/schemacrawler-16.22.1-bin.zip
67+
./schemacrawler-distrib/target/schemacrawler-16.22.1-bin.zip.SHA-512
6868
6969
# PUBLISH DOCKER IMAGE
7070
- id: publish-docker-image

.github/workflows/release.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
run: |
5151
# Publish Docker image
5252
docker version
53-
docker image tag schemacrawler/schemacrawler schemacrawler/schemacrawler:v16.21.4
53+
docker image tag schemacrawler/schemacrawler schemacrawler/schemacrawler:v16.22.1
5454
docker image tag schemacrawler/schemacrawler schemacrawler/schemacrawler:latest
5555
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
5656
docker push --all-tags schemacrawler/schemacrawler
@@ -61,12 +61,12 @@ jobs:
6161
name: Upload installers
6262
uses: actions/upload-artifact@v4
6363
with:
64-
name: release-artifacts-v16.21.4
64+
name: release-artifacts-v16.22.1
6565
path: |
66-
./schemacrawler-distrib/target/schemacrawler-16.21.4-distribution.zip
67-
./schemacrawler-distrib/target/schemacrawler-16.21.4-distribution.zip.SHA-512
68-
./schemacrawler-distrib/target/schemacrawler-16.21.4-bin.zip
69-
./schemacrawler-distrib/target/schemacrawler-16.21.4-bin.zip.SHA-512
66+
./schemacrawler-distrib/target/schemacrawler-16.22.1-distribution.zip
67+
./schemacrawler-distrib/target/schemacrawler-16.22.1-distribution.zip.SHA-512
68+
./schemacrawler-distrib/target/schemacrawler-16.22.1-bin.zip
69+
./schemacrawler-distrib/target/schemacrawler-16.22.1-bin.zip.SHA-512
7070
retention-days: 1
7171
- id: create-release
7272
name: Create GitHub release
@@ -82,10 +82,10 @@ jobs:
8282
See the change history at https://www.schemacrawler.com/changes-report.html
8383
generate_release_notes: true
8484
files: |
85-
./schemacrawler-distrib/target/schemacrawler-16.21.4-distribution.zip
86-
./schemacrawler-distrib/target/schemacrawler-16.21.4-distribution.zip.SHA-512
87-
./schemacrawler-distrib/target/schemacrawler-16.21.4-bin.zip
88-
./schemacrawler-distrib/target/schemacrawler-16.21.4-bin.zip.SHA-512
85+
./schemacrawler-distrib/target/schemacrawler-16.22.1-distribution.zip
86+
./schemacrawler-distrib/target/schemacrawler-16.22.1-distribution.zip.SHA-512
87+
./schemacrawler-distrib/target/schemacrawler-16.22.1-bin.zip
88+
./schemacrawler-distrib/target/schemacrawler-16.22.1-bin.zip.SHA-512
8989
9090
# PUBLISH TO CENTRAL REPOSITORY
9191
- id: install-secret-key

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>us.fatehi</groupId>
99
<artifactId>schemacrawler-parent</artifactId>
10-
<version>16.21.4</version>
10+
<version>16.22.1</version>
1111
<relativePath>./schemacrawler-parent/pom.xml</relativePath>
1212
</parent>
1313
<artifactId>schemacrawler-aggregator</artifactId>

schemacrawler-api/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>schemacrawler-parent</artifactId>
77
<groupId>us.fatehi</groupId>
8-
<version>16.21.4</version>
8+
<version>16.22.1</version>
99
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

schemacrawler-api/src/main/resources/help/SchemaCrawler.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SchemaCrawler 16.21.4
1+
SchemaCrawler 16.22.1
22
Database schema discovery and comprehension tool
33
https://www.schemacrawler.com/
44
Copyright (c) 2000-2024, Sualeh Fatehi <[email protected]>.

schemacrawler-api/src/test/java/schemacrawler/test/VersionTest.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,7 @@
3333
import static schemacrawler.test.utility.FileHasContent.contentsOf;
3434
import static schemacrawler.test.utility.FileHasContent.hasNoContent;
3535
import static schemacrawler.test.utility.FileHasContent.outputOf;
36-
3736
import org.junit.jupiter.api.Test;
38-
3937
import schemacrawler.Version;
4038
import schemacrawler.test.utility.CaptureSystemStreams;
4139
import schemacrawler.test.utility.CapturedSystemStreams;
@@ -47,7 +45,7 @@ public class VersionTest {
4745
public void version(final CapturedSystemStreams streams) throws Exception {
4846
Version.main(new String[0]);
4947

50-
assertThat(contentsOf(streams.out()), startsWith("SchemaCrawler 16.21."));
48+
assertThat(contentsOf(streams.out()), startsWith("SchemaCrawler 16.22."));
5149
assertThat(outputOf(streams.err()), hasNoContent());
5250
}
5351
}

schemacrawler-chatgpt/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-parent</artifactId>
9-
<version>16.21.4</version>
9+
<version>16.22.1</version>
1010
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1111
</parent>
1212
<artifactId>schemacrawler-chatgpt</artifactId>

schemacrawler-commandline/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>schemacrawler-parent</artifactId>
88
<groupId>us.fatehi</groupId>
9-
<version>16.21.4</version>
9+
<version>16.22.1</version>
1010
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1111
</parent>
1212
<artifactId>schemacrawler-commandline</artifactId>

schemacrawler-db2/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>us.fatehi</groupId>
99
<artifactId>schemacrawler-parent</artifactId>
10-
<version>16.21.4</version>
10+
<version>16.22.1</version>
1111
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1212
</parent>
1313
<artifactId>schemacrawler-db2</artifactId>

schemacrawler-dbtest/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>us.fatehi</groupId>
66
<artifactId>schemacrawler-parent</artifactId>
7-
<version>16.21.4</version>
7+
<version>16.22.1</version>
88
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
99
</parent>
1010
<artifactId>schemacrawler-dbtest</artifactId>

schemacrawler-diagram/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>schemacrawler-parent</artifactId>
88
<groupId>us.fatehi</groupId>
9-
<version>16.21.4</version>
9+
<version>16.22.1</version>
1010
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1111
</parent>
1212
<artifactId>schemacrawler-diagram</artifactId>

schemacrawler-distrib/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-parent</artifactId>
9-
<version>16.21.4</version>
9+
<version>16.22.1</version>
1010
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1111
</parent>
1212
<artifactId>schemacrawler-distrib</artifactId>

schemacrawler-distrib/src/examples/resources/_downloader/plugins_ivy.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
</configurations>
99
<dependencies>
1010
<dependency org="us.fatehi" name="schemacrawler-timesten"
11-
rev="16.21.4" conf="binaries->default" />
11+
rev="16.22.1" conf="binaries->default" />
1212
<dependency org="us.fatehi" name="schemacrawler-sapiq"
13-
rev="16.21.4" conf="binaries->default" />
13+
rev="16.22.1" conf="binaries->default" />
1414
<dependency org="us.fatehi" name="schemacrawler-hana"
15-
rev="16.21.4" conf="binaries->default" />
15+
rev="16.22.1" conf="binaries->default" />
1616

1717
<exclude org="us.fatehi" module="schemacrawler" />
1818
<exclude org="org.hsqldb" module="hsqldb" />

schemacrawler-docker-compose/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-parent</artifactId>
9-
<version>16.21.4</version>
9+
<version>16.22.1</version>
1010
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1111
</parent>
1212
<artifactId>schemacrawler-docker-compose</artifactId>

schemacrawler-docker/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-parent</artifactId>
9-
<version>16.21.4</version>
9+
<version>16.22.1</version>
1010
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1111
</parent>
1212
<artifactId>schemacrawler-docker</artifactId>

schemacrawler-docs/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>us.fatehi</groupId>
99
<artifactId>schemacrawler-parent</artifactId>
10-
<version>16.21.4</version>
10+
<version>16.22.1</version>
1111
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1212
</parent>
1313
<artifactId>schemacrawler-docs</artifactId>

schemacrawler-examplecode/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>us.fatehi</groupId>
99
<artifactId>schemacrawler-parent</artifactId>
10-
<version>16.21.4</version>
10+
<version>16.22.1</version>
1111
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1212
</parent>
1313
<artifactId>schemacrawler-examplecode</artifactId>

schemacrawler-hsqldb/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>us.fatehi</groupId>
99
<artifactId>schemacrawler-parent</artifactId>
10-
<version>16.21.4</version>
10+
<version>16.22.1</version>
1111
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1212
</parent>
1313
<artifactId>schemacrawler-hsqldb</artifactId>

schemacrawler-jdbc-drivers/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-parent</artifactId>
9-
<version>16.21.4</version>
9+
<version>16.22.1</version>
1010
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1111
</parent>
1212
<artifactId>schemacrawler-jdbc-drivers</artifactId>

schemacrawler-lint/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-parent</artifactId>
9-
<version>16.21.4</version>
9+
<version>16.22.1</version>
1010
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1111
</parent>
1212
<artifactId>schemacrawler-lint</artifactId>

schemacrawler-loader/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>schemacrawler-parent</artifactId>
88
<groupId>us.fatehi</groupId>
9-
<version>16.21.4</version>
9+
<version>16.22.1</version>
1010
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1111
</parent>
1212
<artifactId>schemacrawler-loader</artifactId>

schemacrawler-mysql/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-parent</artifactId>
9-
<version>16.21.4</version>
9+
<version>16.22.1</version>
1010
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1111
</parent>
1212
<artifactId>schemacrawler-mysql</artifactId>

schemacrawler-offline/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>schemacrawler-parent</artifactId>
88
<groupId>us.fatehi</groupId>
9-
<version>16.21.4</version>
9+
<version>16.22.1</version>
1010
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1111
</parent>
1212
<artifactId>schemacrawler-offline</artifactId>

schemacrawler-oracle/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>us.fatehi</groupId>
99
<artifactId>schemacrawler-parent</artifactId>
10-
<version>16.21.4</version>
10+
<version>16.22.1</version>
1111
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1212
</parent>
1313
<artifactId>schemacrawler-oracle</artifactId>

schemacrawler-parent/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>us.fatehi</groupId>
77
<artifactId>schemacrawler-parent</artifactId>
88
<packaging>pom</packaging>
9-
<version>16.21.4</version>
9+
<version>16.22.1</version>
1010
<name>SchemaCrawler [Parent]</name>
1111
<description>Free database schema discovery and comprehension tool</description>
1212
<url>https://www.schemacrawler.com</url>

schemacrawler-postgresql/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-parent</artifactId>
9-
<version>16.21.4</version>
9+
<version>16.22.1</version>
1010
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1111
</parent>
1212
<artifactId>schemacrawler-postgresql</artifactId>

schemacrawler-scripting/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-parent</artifactId>
9-
<version>16.21.4</version>
9+
<version>16.22.1</version>
1010
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1111
</parent>
1212
<artifactId>schemacrawler-scripting</artifactId>

schemacrawler-sqlite/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-parent</artifactId>
9-
<version>16.21.4</version>
9+
<version>16.22.1</version>
1010
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1111
</parent>
1212
<artifactId>schemacrawler-sqlite</artifactId>

schemacrawler-sqlserver/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-parent</artifactId>
9-
<version>16.21.4</version>
9+
<version>16.22.1</version>
1010
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1111
</parent>
1212
<artifactId>schemacrawler-sqlserver</artifactId>

schemacrawler-testdb/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-parent</artifactId>
9-
<version>16.21.4</version>
9+
<version>16.22.1</version>
1010
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1111
</parent>
1212
<artifactId>schemacrawler-testdb</artifactId>

schemacrawler-text/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>schemacrawler-parent</artifactId>
88
<groupId>us.fatehi</groupId>
9-
<version>16.21.4</version>
9+
<version>16.22.1</version>
1010
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1111
</parent>
1212
<artifactId>schemacrawler-text</artifactId>

schemacrawler-tools/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>schemacrawler-parent</artifactId>
77
<groupId>us.fatehi</groupId>
8-
<version>16.21.4</version>
8+
<version>16.22.1</version>
99
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1010
</parent>
1111
<modelVersion>4.0.0</modelVersion>

schemacrawler-utility/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-parent</artifactId>
9-
<version>16.21.4</version>
9+
<version>16.22.1</version>
1010
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1111
</parent>
1212
<artifactId>schemacrawler-utility</artifactId>

schemacrawler-website/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>us.fatehi</groupId>
88
<artifactId>schemacrawler-parent</artifactId>
9-
<version>16.21.4</version>
9+
<version>16.22.1</version>
1010
<relativePath>../schemacrawler-parent/pom.xml</relativePath>
1111
</parent>
1212
<artifactId>schemacrawler-website</artifactId>

schemacrawler-website/src/site/footer.include

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
</div>
3232
<div id="footer" xmlns:dc="http://purl.org/dc/elements/1.1/" class="small">
3333
<p id="copyright" property="dc:rights">
34-
<span>SchemaCrawler, v16.21.4</span><br />
34+
<span>SchemaCrawler, v16.22.1</span><br />
3535
&copy;
3636
<span property="dc:dateCopyrighted">2000-2024</span>
3737
<span property="dc:creator">Sualeh Fatehi &lt;[email protected]&gt;.</span>

schemacrawler-website/src/site/header.include

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"https://www.linkedin.com/company/2826059/"
5050
],
5151
"downloadUrl":"http://github.com/schemacrawler/SchemaCrawler/releases/",
52-
"softwareVersion":"SchemaCrawler, v16.21.4",
52+
"softwareVersion":"SchemaCrawler, v16.22.1",
5353
"applicationCategory": "Databases, QA, Java, JDBC",
5454
"operatingSystem": "Any",
5555
"releaseNotes": "https://www.schemacrawler.com/changes-report.html"

schemacrawler-website/src/site/markdown/building.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ In order to use SchemaCrawler in your [Apache Maven] projects, add a dependency
1616
<dependency>
1717
<groupId>us.fatehi</groupId>
1818
<artifactId>schemacrawler</artifactId>
19-
<version>16.21.4</version>
19+
<version>16.22.1</version>
2020
</dependency>
2121
</dependencies>
2222
```
@@ -26,7 +26,7 @@ In order to use SchemaCrawler in your [Gradle] projects, add a dependency to Sch
2626

2727
```groovy
2828
dependencies {
29-
compile group: 'us.fatehi', name: 'schemacrawler', version: '16.21.4'
29+
compile group: 'us.fatehi', name: 'schemacrawler', version: '16.22.1'
3030
}
3131
```
3232

0 commit comments

Comments
 (0)