diff --git a/CHANGELOG.md b/CHANGELOG.md index d61c71c..531b1e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [3.4.1] - 2024-01-29 +### Changes +- Add `lookup_name` hints to Lookups for some third party tools, such as DRF Spectacular, django-filter, etc. + (Thanks [Chris Muthig](https://github.com/camuthig)) +- Add logic in subqueries to only use the PK. + (Thanks [Chris Muthig](https://github.com/camuthig)) +- Retirement of the module. + ## [3.4.0] - 2024-01-09 - Add support for Django 5.0 - Drop support for Django < 3.2, 4.0, 4.1 diff --git a/hashid_field/__init__.py b/hashid_field/__init__.py index 1658c28..318332b 100644 --- a/hashid_field/__init__.py +++ b/hashid_field/__init__.py @@ -2,7 +2,7 @@ from .hashid import Hashid __title__ = 'Django Hashid Field' -__version__ = "3.4.0" +__version__ = "3.4.1" __author__ = 'Nathan Shafer' __license__ = 'MIT License' __copyright__ = 'Copyright 2017-2021 Nathan Shafer'