Skip to content

Commit

Permalink
release: v1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Clashsoft committed Feb 24, 2021
1 parent a3d29e9 commit df7a83a
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -381,3 +381,25 @@

* `a`/`an` is now optional in placeholders. #220
> This makes it possible to write `Every student has credits of type int.` instead of `a credits`.
# fulibScenarios v1.7.0

## General

* Updated to fulib v1.5.1. #221
* Updated to fulibTools v1.5.1. #221

## New Features

+ Added the boolean literals `true` and `false`. #219 #224

## Improvements

* String literals with exactly one character can now be converted to `char` and `Character`. #223 #225
* Integer literals can now be converted to `byte`, `short`, `char` and their wrappers. #225
* Integer literals can no longer be converted to the `Long`, `Float` and `Double` wrappers. #225

## Bugfixes

* Automatic `String``char` conversions now generate a call to `<expr>.charAt(0)` instead of `charAt(1)`. #222 #225
* Properties in external classes where the getter starts with `is` are now correctly recognized as such. #224
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Install the [fulibGradle plugin](https://github.com/fujaba/fulibGradle):
plugins {
id 'java'
// https://plugins.gradle.org/plugin/org.fulib.fulibGradle
id 'org.fulib.fulibGradle' version '0.4.0'
id 'org.fulib.fulibGradle' version '0.5.0'
// ...
}
Expand All @@ -56,11 +56,11 @@ dependencies {
// ...
// https://mvnrepository.com/artifact/org.fulib/fulibScenarios
fulibScenarios group: 'org.fulib', name: 'fulibScenarios', version: '1.6.2'
fulibScenarios group: 'org.fulib', name: 'fulibScenarios', version: '1.7.0'
// optional (required for mockups):
// https://mvnrepository.com/artifact/org.fulib/fulibMockups
testImplementation group: 'org.fulib', name: 'fulibMockups', version: '0.2.0'
testImplementation group: 'org.fulib', name: 'fulibMockups', version: '0.3.1'
// optional (required for pattern matching):
// https://mvnrepository.com/artifact/org.fulib/fulibTables
Expand Down

0 comments on commit df7a83a

Please sign in to comment.