Skip to content

Commit

Permalink
version 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vagmcs committed Jun 20, 2021
1 parent 62326ba commit 1a4154a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 0 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import sbt.Keys._

addCommandAlias("check", ";headerCreate;dependencyUpdates;compile")
addCommandAlias("build", ";check;test;package")
addCommandAlias("rebuild", ";clean;build")
Expand Down
4 changes: 2 additions & 2 deletions src/main/scala/scalatikz/app/ScalaTIKZ.scala
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ object ScalaTIKZ extends AppCLI[Conf]("scalatikz") {
.action { (size, conf) =>
conf.copy(figure = conf.figure.havingLegendFontSize(size))
}.text(s"Set legend font size (default is $NORMAL). " +
s"\n\t${"Available font sizes:".green.bold} ${FontSize.values.mkString(", ")}\n")
s"\n\t${"Available font sizes:".green.bold} ${FontSize.values.mkString(", ")}\n")

opt[Unit]("x-log-scale").optional.unbounded
.action((_, conf) => conf.copy(figure = conf.figure.havingLogXAxis))
Expand Down Expand Up @@ -535,7 +535,7 @@ object ScalaTIKZ extends AppCLI[Conf]("scalatikz") {

resultedFigure =
resultedFigure.scatterMesh(
marker = graphic.marker.getOrElse(CIRCLE),
marker = graphic.marker.getOrElse(CIRCLE),
markSize = graphic.markSize
)(coordinates)

Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/scalatikz/pgf/plots/Axis.scala
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import scalatikz.pgf.enums.Color
import scalatikz.pgf.plots.enums.AxisLinePos.BOX
import scalatikz.pgf.plots.enums.AxisScale.LINEAR
import scalatikz.pgf.enums.Color.WHITE
import scalatikz.pgf.plots.enums.FontSize.{FOOTNOTE, NORMAL, SMALL}
import scalatikz.pgf.plots.enums.FontSize.NORMAL
import scalatikz.pgf.plots.enums.LegendPos.OUTER_NORTH_EAST
import scalatikz.pgf.plots.enums._

Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ThisBuild / version := "0.5.0-SNAPSHOT"
ThisBuild / version := "0.5.0"

0 comments on commit 1a4154a

Please sign in to comment.