From 7de3691864e23ba8e6a20eba169de9d3b12583b4 Mon Sep 17 00:00:00 2001 From: Tim Molter Date: Fri, 5 Jan 2024 11:16:24 +0100 Subject: [PATCH] prepare for 3.8.7 release --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 60c709fc..bd444f0d 100644 --- a/README.md +++ b/README.md @@ -540,7 +540,7 @@ Add the XChart library as a dependency to your pom.xml file: org.knowm.xchart xchart - 3.8.6 + 3.8.7 ``` @@ -556,7 +556,7 @@ For snapshots, add the following to your pom.xml file: org.knowm.xchart xchart - 3.8.7-SNAPSHOT + 3.8.8-SNAPSHOT ``` @@ -567,7 +567,7 @@ Snapshots can be manually downloaded from Sonatype: [https://oss.sonatype.org/co To use XChart with the Scala Build Tool (SBT) add the following to your build.sbt ```scala -libraryDependencies += "org.knowm.xchart" % "xchart" % "3.8.6" exclude("de.erichseifert.vectorgraphics2d", "VectorGraphics2D") withSources() +libraryDependencies += "org.knowm.xchart" % "xchart" % "3.8.7" exclude("de.erichseifert.vectorgraphics2d", "VectorGraphics2D") withSources() ``` ## Building with Maven @@ -600,15 +600,15 @@ In the plugins section in IntelliJ search for `google-java-format` and install t ![](https://raw.githubusercontent.com/knowm/XChart/develop/etc/XChart_Demo.png) -- Linux: execute command `java -cp xchart-demo-3.8.6.jar:xchart-3.8.6.jar org.knowm.xchart.demo.XChartDemo`. +- Linux: execute command `java -cp xchart-demo-3.8.7.jar:xchart-3.8.7.jar org.knowm.xchart.demo.XChartDemo`. -- Windows: In the cmd command window, execute the command `java -cp xchart-demo-3.8.6.jar;xchart-3.8.6.jar org.knowm.xchart.demo.XChartDemo`; In - the PowerShell command window, execute the command `java -cp "xchart-demo-3.8.6.jar;xchart-3.8.6.jar" org.knowm.xchart.demo.XChartDemo`. +- Windows: In the cmd command window, execute the command `java -cp xchart-demo-3.8.7.jar;xchart-3.8.7.jar org.knowm.xchart.demo.XChartDemo`; In + the PowerShell command window, execute the command `java -cp "xchart-demo-3.8.7.jar;xchart-3.8.7.jar" org.knowm.xchart.demo.XChartDemo`. E.g: ```sh cd /path/to/xchart-demo/jar/ -java -cp xchart-demo-3.8.6.jar:xchart-3.8.6.jar org.knowm.xchart.demo.XChartDemo +java -cp xchart-demo-3.8.7.jar:xchart-3.8.7.jar org.knowm.xchart.demo.XChartDemo ``` ## Running Demo - option 2 - building yourself