Skip to content

Releases: gobuffalo/flect

v1.0.2

24 Feb 15:04
v1.0.2
6ae7779
Compare
Choose a tag to compare

What's Changed

  • fixed incorrect titleizing of unicode string by @sio4 in #68

Full Changelog: v1.0.1...v1.0.2

v1.0.1

23 Feb 10:34
v1.0.1
9226f5f
Compare
Choose a tag to compare

What's Changed

  • fixed incorrect singularize/pluralize for abbreviations by @sio4 in #66

Full Changelog: v1.0.0...v1.0.1

v1.0.0

09 Jan 14:49
v1.0.0
ef58751
Compare
Choose a tag to compare

What's Changed

  • refactor pluralize/singularize inflection logics by @sio4 in #62
  • removed deprecated strings.Title(), updated test cases and benchmarks by @sio4 in #63
  • updated README and SHOULDERS by @sio4 in #64

Full Changelog: v0.3.0...v1.0.0

v0.3.0

03 Sep 14:33
Compare
Choose a tag to compare

What's Changed

  • preparing go1.18 support by @sio4 in #57
  • replaced test action with starter/reusable workflow by @sio4 in #58
  • fixed opened issues to stabilize buffalo v1 by @sio4 in #59
  • fixed #24 by adjusting the function's conditions by @sio4 in #60

Full Changelog: v0.2.5...v0.3.0

v0.2.5

02 Apr 00:17
Compare
Choose a tag to compare

What's Changed

  • Remove oot/eet from suffix rules by @brycahta in #54
  • merging commits already merged into master into main by @sio4 in #55

New Contributors

Full Changelog: v0.2.4...v0.2.5

v0.2.4

03 Nov 12:19
Compare
Choose a tag to compare

What's Changed

  • update modules (external, testify v1.7.0) by @sio4 in #52
  • task: updates github actions to test with Go 1.16 and 1.17 by @paganotoni

Full Changelog: v0.2.3...v0.2.4

v0.2.3

17 Jun 17:12
cc5b892
Compare
Choose a tag to compare

Sorting pluralization rules and adding a new one.

v0.2.2

28 Aug 14:17
64ac02e
Compare
Choose a tag to compare
Merge pull request #42 from divan/master

Fix capitalization for non-English strings

v0.2.1

13 Feb 21:14
7a04ff1
Compare
Choose a tag to compare

Solves an issue with words ending in ld. And adds children as an irregular plural for child.

v0.2.0: combine pluralization and singularization rules (#30)

17 Dec 15:25
Compare
Choose a tag to compare
* combine pluralization and singularization rules

Combines the rules for pluralization and singularization into a single
set for improved consistency and maintenance.
Suffix rules are now ordered with most specific matches (longest suffixes)
matched before shorter suffixes.

Also fixed pluralization of "you", should be "you" instead of "yous".
And added some extra cases for better handling of some words ending with
"us".

* remove unused rule

The rule for "appendix" suffix is not used because it's already
in the list of full words.

* alphabetize single to plural word map