Skip to content

Commit

Permalink
Readme fix (#41)
Browse files Browse the repository at this point in the history
* uncomment code in README

* bump version
  • Loading branch information
solaluset authored Apr 20, 2024
1 parent 8cb0dc9 commit 08f408b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

### Hint: use `https://github.com/solaluset/i18nice/compare/v<version 1 (older)>...v<version 2 (newer)>` to see full code difference between versions

### v0.13.3
- Minor README fix

### v0.13.2
- Fixed PyPI upload

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def determine_plural_form(*, count):
i18n.add_function("p", determine_plural_form, "uk")
i18n.t("days", count=1) # 1 день
i18n.t("days", count=2) # 2 дні
# i18n.t("days", count=5) # 5 днів
i18n.t("days", count=5) # 5 днів
```

## Testing
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

setup(
name='i18nice',
version="0.13.2",
version="0.13.3",
description='Translation library for Python',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 08f408b

Please sign in to comment.