Skip to content

Commit

Permalink
doc: Migration to 4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
manticore-projects committed Sep 2, 2023
1 parent 9857d02 commit ac40baa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ tasks.register('sphinx', Exec) {
}

publish {
dependsOn(check)
dependsOn(check, sphinx)
}

publishing {
Expand Down Expand Up @@ -571,6 +571,7 @@ remotes {
}

tasks.register('upload') {
dependsOn(check, sphinx)
doFirst {
if (findProperty("${project.name}.host") == null) {
println(
Expand Down
4 changes: 2 additions & 2 deletions src/site/sphinx/migration.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
*********************************
Migration to 5.0
Migration to 4.7
*********************************

The new version of JSQLParser 5.0 is a rewrite in order to simply accessing the SQL's Abstract Syntax Tree (AST). Quite a few redundant classes have been removed or merged.
The new version of JSQLParser 4.7 is a rewrite in order to simply accessing the SQL's Abstract Syntax Tree (AST). Quite a few redundant classes have been removed or merged.

As always, such a major improvement comes at a certain cost, which is breaking the previous API. Following the guidance below, the new API can be adopted easily although you are welcome to lodge a support request when any questions or concerns arise.

Expand Down

0 comments on commit ac40baa

Please sign in to comment.