Skip to content

Latest commit

 

History

History
112 lines (73 loc) · 2.37 KB

CHANGELOG.md

File metadata and controls

112 lines (73 loc) · 2.37 KB

Change Log

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog.

The version number is based on calendar versioning. The specific format is YYYY.(M)M.(D)D, where the month and day may be single-digit because Python doesn't allow zero-padded major/minor/micro version numbers like 05 (it'd have to be just 5).

[Unreleased]

Added

Changed

Deprecated

Removed

Fixed

Security

[2025.2.8]

Added

  • Explcitly indicated that the library is type-annotated.

[2025.1.28]

Changed

  • Sped up the retrieval of Language objects during runtime.

[2025.1.27]

Changed

  • Updated the ISO 639 data from SIL to the latest 2025-01-15 release.
  • The data tables are now included as the original tab-separated value files instead of a compiled SQLite database.

Fixed

  • Fixed Language.from_part3 so that it now also works for a retired ISO 639-3 code.

[2024.10.22]

Added

  • Added support for Python 3.13.

Removed

  • Dropped support for Python 3.8.

Fixed

  • Added CHANGELOG.md to the PyPI source distribution.

[2024.4.27]

Changed

  • Updated the ISO 639 data from SIL to the latest 2024-04-15 release.

[2024.2.7]

Changed

  • Updated the ISO 639 data from SIL to the latest 2024-01-10 release.

[2024.1.2]

Changed

  • Updated the ISO 639 data from SIL to the latest 2023-12-20 release.

[2023.12.11]

Added

  • Added support for Python 3.12.

[2023.6.15]

Fixed

  • Made Language class instances actually hashable (#3).

[2023.4.13]

Changed

  • Disabled thread checking for the database, as it's read-only (#1).

[2023.2.4]

Changed

  • Updated the ISO 639 data from SIL to the latest 2023-01-23 release.

[2022.11.27]

Added

  • Defined the LanguageNotFoundError exception.
  • Added support for Python 3.11.

Changed

  • If the Language class methods match, from_part3, etc. receive an invalid input language code or name, a LanguageNotFoundError is now raised. (Previously, None was returned with no exception raised.)

Removed

  • Dropped support for Python 3.7.

[2022.9.17]

Added

  • Added constants DATA_LAST_UPDATED and ALL_LANGUAGES.

[2022.5.16]

Fixed

  • Corrected repo name in package metadata and documentation.

[2022.5.15]

  • First release!