Skip to content

Commit

Permalink
prepare for 3.8.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-eucalyptus committed Nov 30, 2023
1 parent b8f22b3 commit a489304
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ Add the XChart library as a dependency to your pom.xml file:
<dependency>
<groupId>org.knowm.xchart</groupId>
<artifactId>xchart</artifactId>
<version>3.8.5</version>
<version>3.8.6</version>
</dependency>
```

Expand All @@ -556,7 +556,7 @@ For snapshots, add the following to your pom.xml file:
<dependency>
<groupId>org.knowm.xchart</groupId>
<artifactId>xchart</artifactId>
<version>3.8.6-SNAPSHOT</version>
<version>3.8.7-SNAPSHOT</version>
</dependency>
```

Expand All @@ -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.5" exclude("de.erichseifert.vectorgraphics2d", "VectorGraphics2D") withSources()
libraryDependencies += "org.knowm.xchart" % "xchart" % "3.8.6" exclude("de.erichseifert.vectorgraphics2d", "VectorGraphics2D") withSources()
```

## Building with Maven
Expand Down Expand Up @@ -597,15 +597,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.5.jar:xchart-3.8.5.jar org.knowm.xchart.demo.XChartDemo`.
- Linux: execute 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.5.jar;xchart-3.8.5.jar org.knowm.xchart.demo.XChartDemo`; In
the PowerShell command window, execute the command `java -cp "xchart-demo-3.8.5.jar;xchart-3.8.5.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`.

E.g:
```sh
cd /path/to/xchart-demo/jar/
java -cp xchart-demo-3.8.5.jar:xchart-3.8.5.jar org.knowm.xchart.demo.XChartDemo
java -cp xchart-demo-3.8.6.jar:xchart-3.8.6.jar org.knowm.xchart.demo.XChartDemo
```

## Running Demo - option 2 - building yourself
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand Down

0 comments on commit a489304

Please sign in to comment.