-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1.2.0: Added optional maxResults parameter to Rhymer.getRhymingWords().
Added optional `maxResults` parameter to `Rhymer.getRhymingWords()` to limit the number of results returned. By default, all results are returned, which is new behavior. Previously, "last-syllable" matches were ommitted completely if better rhymes were available (strict or "last-two-syllables").
- Loading branch information
Showing
5 changed files
with
60 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Change Log | ||
========== | ||
|
||
1.2.0 *(2017-02-11)* | ||
-------------------- | ||
* Added optional `maxResults` parameter to `Rhymer.getRhymingWords()` to limit the number of results returned. By default, all results are returned, which is new behavior. Previously, "last-syllable" matches were ommitted completely if better rhymes were available (strict or "last-two-syllables"). | ||
|
||
1.1.2 *(2016-10-29)* | ||
-------------------- | ||
* New behavior if there are too many "last-syllable" matches: Now we will omit all "last-syllable" matches if either "strict" or "last-two-syllable" matches are present. Previously, we omitted all one-syllable matches if "last-two-syllable" matches were present. | ||
|
||
1.1.1 *(2016-10-21)* | ||
-------------------- | ||
* Filter out empty rhyme results. | ||
|
||
1.1.0 *(2016-02-25)* | ||
-------------------- | ||
* Added "strict" rhyming matches (words match from the last stressed syllable to the end of the word). | ||
|
||
1.0.0 *(2016-02-14)* | ||
-------------------- | ||
* First version. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
group 'ca.rmen' | ||
version '1.1.2' | ||
version '1.2.0' | ||
|
||
apply plugin: 'java' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
group 'ca.rmen' | ||
version '1.1.2' | ||
version '1.2.0' | ||
|
||
apply plugin: 'java' | ||
apply plugin: 'maven' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters