Skip to content

Commit

Permalink
0.9.97 new --withoutTimestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
carueda committed Jun 11, 2020
1 parent 7e4357c commit e4fbdf6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
lazy val tscfgVersion = setVersion("0.9.96")
lazy val tscfgVersion = setVersion("0.9.97")

organization := "com.github.carueda"
name := "tscfg"
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2020-06-11 - 0.9.97

- new `--withoutTimestamp` option, thanks @JustinPihony.

2020-05-06

- add a test program re array parsing in LB Config while replying to #61 "Default value for List type"
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.conf
Original file line number Diff line number Diff line change
@@ -1 +1 @@
tscfg.version = 0.9.96
tscfg.version = 0.9.97
2 changes: 1 addition & 1 deletion src/main/scala/tscfg/Main.scala
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ object Main {
val generateWithTimeStamp = !opts.generateWithoutTimestamp

pw.println(
s"""// generated by tscfg $version${if(generateWithTimeStamp)s" on ${new Date()}"}
s"""// generated by tscfg $version${if (generateWithTimeStamp) s" on ${new Date()}" else ""}
|// source: $inputFilename
|
|${results.code}
Expand Down

0 comments on commit e4fbdf6

Please sign in to comment.