Skip to content

Commit

Permalink
Updates for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
jfree committed Aug 4, 2021
1 parent a3bee7e commit 63eb337
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 15 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
SkijaGraphics2D
===============

Version 1.0.1, 27 July 2021
Version 1.0.2, 4 August 2021

Overview
--------
Expand Down Expand Up @@ -33,7 +33,7 @@ To include `SkijaGraphics2D` in your own project, add the following Maven depend
<dependency>
<groupId>org.jfree</groupId>
<artifactId>org.jfree.skijagraphics2d</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
</dependency>

Build
Expand Down Expand Up @@ -81,7 +81,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
History
-------

##### not-yet-released : Version 1.0.2
##### 4-Aug-2021 : Version 1.0.2
- fix `setClip()` to restore original clip before applying new user clip
- set `PathFillMode` when filling paths
- add `MIN_LINE_WIDTH` to apply for `BasicStroke(0f)`
Expand Down
15 changes: 5 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.jfree</groupId>
<artifactId>org.jfree.skijagraphics2d</artifactId>
<version>1.0.2-SNAPSHOT</version>
<version>1.0.2</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>15</maven.compiler.source>
<maven.compiler.target>15</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>

<name>SkijaGraphics2D</name>
Expand Down Expand Up @@ -153,11 +153,6 @@
<artifactId>skija-${skija.platform}</artifactId>
<version>0.92.22</version>
</dependency>
<dependency>
<groupId>eu.hansolo</groupId>
<artifactId>SteelSeries</artifactId>
<version>3.9.30</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
Expand Down Expand Up @@ -202,8 +197,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>11</source>
<target>11</target>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<compilerArgument>-Xlint:unchecked</compilerArgument>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/log4j2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
</Console>
</Appenders>
<Loggers>
<Root level="debug">
<Root level="warn">
<AppenderRef ref="Console"/>
</Root>
</Loggers>
</Configuration>
</Configuration>

0 comments on commit 63eb337

Please # to comment.