Skip to content

v2.0.0

Latest

Choose a tag to compare

@github-actions github-actions released this 11 Jun 12:31
· 22 commits to master since this release
531e859

2.0.0 (2025-06-11)

Features

There are no new features or changed rules in this version. Changes:

  • Added typing info (#131)
  • Change methods to use snake case (#131) (c901a30)

BREAKING CHANGES

  • Changed the minimum Python version to 3.10
  • Changed methods to use snake case

Upgrade from the previous versions

  • Change methods to snake case, for example
pluralizer.isPlural('apples') -> pluralizer.is_plural('apples')
pluralizer.isSingular('apples') -> pluralizer.is_singular('apples')