Skip to content

Commit

Permalink
Bump new version
Browse files Browse the repository at this point in the history
  • Loading branch information
koldakov committed Sep 20, 2024
1 parent 276fc3b commit abe159b
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.2.0] - 2024-09-20

### Added

- Macrolanguages list. For example,
if you need to get all `m_id` ARA languages you can use the next code:
```python
from pycountries import MacroLanguage

print(MacroLanguage("ara", i_status="R"))
```

### Fixed

- Minor bugs

## [1.1.1] - 2024-07-20

### Added
Expand Down Expand Up @@ -160,6 +176,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- Base Country Model.
- Base Currency Model.

[1.2.0]: https://github.com/koldakov/pycountries/releases/tag/1.2.0
[1.1.1]: https://github.com/koldakov/pycountries/releases/tag/1.1.1
[1.1.0]: https://github.com/koldakov/pycountries/releases/tag/1.1.0
[1.0.3]: https://github.com/koldakov/pycountries/releases/tag/1.0.3
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pycountries"
version = "1.1.1"
version = "1.2.0"
license = {text = "MIT License"}
authors = [
{ name="Ivan Koldakov", email="[email protected]" },
Expand Down
2 changes: 1 addition & 1 deletion src/pycountries/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from pycountries.macro_languages import MacroLanguage
from pycountries.phones import Phone

__version__ = "1.1.1"
__version__ = "1.2.0"
__author__ = "Ivan Koldakov"
__all__ = [
"AmountSpecialValuesNotAllowedError",
Expand Down

0 comments on commit abe159b

Please sign in to comment.