Skip to content

Commit

Permalink
Fix #1467 (#1469)
Browse files Browse the repository at this point in the history
* Croatian lang support (#1468)

---------

Co-authored-by: David Gorup <93621857+CerealKiller0807@users.noreply.github.com>
  • Loading branch information
lk-geimfari and CerealKiller0807 authored Jan 19, 2024
1 parent f899514 commit c7766fd
Show file tree
Hide file tree
Showing 19 changed files with 3,255 additions and 36 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 12.2.0
--------------

- Added Croatian locale support (``Locale.HR``). Great appreciation to `@CerealKiller0807 <https://github.com/CerealKiller0807>`_ for this contribution.

Version 12.1.0
--------------

Expand Down
4 changes: 3 additions & 1 deletion CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ Patches and Suggestions
- Nick Pope `(ngnpope)`_
- Arul Prabakaran `(arulprabakaran)`_
- Florian Kroiß `(Wooza)`_
- Han Wang `(freddiewanah)`_
- Han Wang `(freddiewanah)`_
- David Gorup `(CerealKiller0807)`_


.. _(lk-geimfari): https://github.com/lk-geimfari
Expand Down Expand Up @@ -162,3 +163,4 @@ Patches and Suggestions
.. _(arulprabakaran): https://github.com/arulprabakaran
.. _(Wooza): https://github.com/Wooza
.. _(freddiewanah): https://github.com/freddiewanah
.. _(CerealKiller0807): https://github.com/CerealKiller0807
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ Install this specific version to ensure compatibility.
Features
--------

- **Multilingual**: Supports multiple languages.
- **Multilingual**: Supports 35 different locales.
- **Extensibility**: Supports custom data providers.
- **Easy**: Offers a simple design and clear documentation for easy data generation.
- **Ease of use**: Features a simple design and clear documentation for straightforward data generation.
- **Performance**: Widely recognized as the fastest data generator among Python solutions.
- **Data variety**: Includes a variety of data providers designed for different use cases.
- **Data variety**: Includes various data providers designed for different use cases.
- **Schema-based generators**: Offers schema-based data generators to effortlessly produce data of any complexity.

Documentation
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@
# built documents.
#
# The short X.Y version.
version = "12.1.0"
version = "12.2.0"
# The full version, including alpha/beta/rc tags.
release = "12.1.0"
release = "12.2.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
3 changes: 2 additions & 1 deletion docs/locales.rst
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ You can also use it with :class:`~mimesis.Generic()`:
Supported locales
-----------------

Mimesis currently includes support for 34 different locales:
Mimesis currently includes support for 35 different locales:

======= ==================== ==================== ====================
Code Associated attribute Name Native Name
Expand All @@ -105,6 +105,7 @@ Code Associated attribute Name Native Name
`fa` **Locale.FA** Farsi فارسی
`fi` **Locale.FI** Finnish Suomi
`fr` **Locale.FR** French Français
`hr` **Locale.HR** Croatian Hrvatski
`hu` **Locale.HU** Hungarian Magyar
`is` **Locale.IS** Icelandic Íslenska
`it` **Locale.IT** Italian Italiano
Expand Down
2 changes: 1 addition & 1 deletion mimesis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
"__license__",
]

__version__ = "12.1.2"
__version__ = "12.2.0"
__title__ = "mimesis"
__description__ = "Mimesis: Fake Data Generator."
__url__ = "https://github.com/lk-geimfari/mimesis"
Expand Down
Loading

0 comments on commit c7766fd

Please sign in to comment.