diff --git a/.bumpversion.cfg b/.bumpversion.cfg index bc949c2..db8cde0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.1.1 commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index 09299d7..91bfb9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.1] + +- Handle additional case for related primary key field. + ## [0.1.0] - Change the hints API from `prefetch.Required` to `hints.Virtual`. diff --git a/django_virtual_models/__init__.py b/django_virtual_models/__init__.py index cdb39a6..184514d 100644 --- a/django_virtual_models/__init__.py +++ b/django_virtual_models/__init__.py @@ -1,7 +1,7 @@ """Top-level package for django_virtual_models.""" import logging -__version__ = "0.1.0" +__version__ = "0.1.1" # Good practice: https://docs.python-guide.org/writing/logging/#logging-in-a-library logging.getLogger(__name__).addHandler(logging.NullHandler())