vertical-blank / sql-formatter

SQL formatter written with only Java Standard Library, without dependencies.
MIT License
223 stars 46 forks source link

1.0.3 #26

Closed vertical-blank closed 3 years ago

codecov[bot] commented 3 years ago

Codecov Report

Merging #26 into master will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff            @@
##             master      #26   +/-   ##
=========================================
  Coverage     92.81%   92.81%           
  Complexity      198      198           
=========================================
  Files            17       17           
  Lines           473      473           
  Branches         35       35           
=========================================
  Hits            439      439           
  Misses           24       24           
  Partials         10       10           

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update f8a2ce6...5177e41. Read the comment docs.

vatsalmevada commented 3 years ago

Thanks, @vertical-blank for cutting a new release. By when the new version will be available on maven central?

vertical-blank commented 3 years ago

@vatsalmevada I've staged new version, but I missed to presss "release" button... I've done it about 5 hours ago, and now that is available on maven central.

vatsalmevada commented 3 years ago

@vertical-blank , still can not see 1.0.3 on maven. https://mvnrepository.com/artifact/com.github.vertical-blank/sql-formatter

Am I looking at the right location?

vertical-blank commented 3 years ago

@vatsalmevada mvnrepository.com takes more time than Sonatype to reflect a new release.

Actual URL of artifact being grabbed by maven(or sbt, gradle etc...) is this. https://repo1.maven.org/maven2/com/github/vertical-blank/sql-formatter/1.0.3/

And, this script works for me.

groovy ./test.groovy
@Grab('com.github.vertical-blank:sql-formatter:1.0.3')

import com.github.vertical_blank.sqlformatter.SqlFormatter
println SqlFormatter.format("SELECT * FROM table1")
vatsalmevada commented 3 years ago

@vertical-blank got it. Thanks!