Skip to content

Commit

Permalink
Update readme and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jjlauer committed Oct 27, 2023
1 parent b6d3f92 commit 4d4cc74
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Blaze by Fizzed
===============

#### 1.3.0 - 2023-10-26

- Kotlin upgraded to support v1.9.10 .kt scripts
- Groovy upgraded to support v4.0.15 .groovy scripts
- Java script engine no longer locks source to Java 8, it will now use the version of the JVM executing the script.
- Cached compiled classes will use the JVM version as part of the hash (to figure out if they should be re-compiled)
- Fixed unit tests failing on Windows & MacOS due to a maven surefire issue
- Support for parent classes of scripts to expose public methods (tasks). Allows scripts to extend parent classes.

#### 1.2.1 - 2023-10-26

- Prevent maven project installs and deploys in IDE support
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,10 @@ invoke blaze, it does the following:

- Write your applications (scripts) in whatever JVM language you prefer.
Out-of-the-box support for
- Java (.java)
- JavaScript (.js)
- Groovy (.groovy)
- Kotlin (.kt, .kts)
- Or write your own (examples [here](blaze-core/src/main/java/com/fizzed/blaze/jdk), [here](blaze-core/src/main/java/com/fizzed/blaze/nashorn), [here](blaze-kotlin/src/main/java/com/fizzed/blaze/kotlin), and [here](blaze-groovy/src/main/java/com/fizzed/blaze/groovy))
- Java (.java) (8, 11, 17, 21, etc.)
- Groovy (.groovy) (v4.0.15)
- Kotlin (.kt) (v1.9.10)
- Or write your own (examples [here](blaze-core/src/main/java/com/fizzed/blaze/jdk), [here](blaze-kotlin/src/main/java/com/fizzed/blaze/kotlin), and [here](blaze-groovy/src/main/java/com/fizzed/blaze/groovy))
- Zero-install required. Just drop `blaze.jar` into your project directory and
you or others can run it with `java -jar blaze.jar`.
- [IDE support](https://github.com/fizzed/blaze#ide-support)
Expand Down

0 comments on commit 4d4cc74

Please sign in to comment.