Skip to content

Commit

Permalink
changelog: bumps version 2.0.0 (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardobna authored Sep 21, 2020
1 parent 9e99230 commit 3eb11f6
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.0.0] - 2020-09-18

### Added
- parameter <jdkPath>: by using this parameter, when packaging, it will use the path passed here as the jdk to build.
```xml
<configuration>
<jdkPath>path/to/jdk</jdkPath>
</configuration>
```

- Support for any Java version to use with TotalCross development, it's important to say we didn't add support to newer bytecode, this is just so the user can download any version of Java and use what we already support, this was done with embedding the latest [Zulu build of version 8](https://www.azul.com/downloads/zulu-community/?version=java-8-lts&architecture=x86-64-bit&package=jre) and using it when packaging. Using it will assume you agree to the [Terms of Use](https://www.azul.com/products/zulu-and-zulu-enterprise/zulu-terms-of-use/) from Azul, if you don't agree to it you can use your JAVA_HOME with the jdkPath parameter:
```xml
<configuration>
<jdkPath>${env.JAVA_HOME}</jdkPath>
</configuration>
```

## [1.2.0] - 2020-08-05
### Added
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.totalcross</groupId>
<artifactId>totalcross-maven-plugin</artifactId>
<version>1.2.0</version>
<version>2.0.0</version>
<name>totalcross-maven-plugin</name>
<url>http://maven.apache.org</url>
<packaging>maven-plugin</packaging>
Expand Down

0 comments on commit 3eb11f6

Please sign in to comment.