Skip to content

Commit

Permalink
update supporting libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
jwoehr committed Aug 5, 2024
1 parent 565f097 commit 3da01b6
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
14 changes: 8 additions & 6 deletions CHANGES.TXT
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
CHANGES.TXT for Ublu Midrange and Mainframe Life Cycle Extension Language
Copyright (c) 2019, 2022 Jack J. Woehr jwoehr@softwoehr.com http://www.softwoehr.com
All rights reserved.
Copyright (c) 2019, 2022, 2024 Jack J. Woehr jwoehr@softwoehr.com http://www.softwoehr.com
All rights reserved. Open Source, see LICENSE

2.0.2-dev
2.0.2 2024-08-05
-----
* Features
* Add FORMAT_0400 back into CmdSpoolFOpenList
* Libraries
* Bump postgresql to 42.7
* Bump mssql-jdbc to 12.6.1
* Bump postgresql to 42.7.3
* Bump mssql-jdbc to 12.8.0
* Bump jt400 to 20.0.7
* Userdoc
* `db` accepts `-dbtype mssql`
* `db` accepts `-dbtype mssql`
* Misc
* fix email address in pom.xml

2.0.1 2022-10-10
-----
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>io.github.jwoehr</groupId>
<artifactId>ublu</artifactId>
<version>2.0.2-dev</version>
<version>2.0.2</version>
<name>Ublu</name>
<description>Ublu Midrange and Mainframe Life Cycle Extension Language</description>
<url>https://github.com/jwoehr/ublu</url>
Expand All @@ -18,7 +18,7 @@
<developer>
<id>jwoehr</id>
<name>Jack Woehr</name>
<email>jack@softwoehr.com</email>
<email>jwoehr@softwoehr.com</email>
</developer>
</developers>

Expand Down Expand Up @@ -277,13 +277,13 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.7.2</version>
<version>42.7.3</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc -->
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>12.6.1.jre8</version>
<version>12.8.0.jre8</version>
</dependency>

</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/ublu/Version.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package ublu;
class Version {
static String compileDateTime = "2024-04-04 04:48:06 (GMT)";
static String ubluVersion = "2.0.2-dev";
static String compileDateTime = "2024-08-05 20:53:54 (GMT)";
static String ubluVersion = "2.0.2";
}

0 comments on commit 3da01b6

Please sign in to comment.