diff --git a/.bumpversion.cfg b/.bumpversion.cfg index be82c02..ee84a60 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.2 +current_version = 0.1.3 commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index e281c8b..f1b855a 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.3] + +- README update. + ## [0.1.2] - Avoid redundant `to_attr` when nesting Virtual Models diff --git a/django_virtual_models/__init__.py b/django_virtual_models/__init__.py index 6abc16c..71028bb 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.2" +__version__ = "0.1.3" # Good practice: https://docs.python-guide.org/writing/logging/#logging-in-a-library logging.getLogger(__name__).addHandler(logging.NullHandler())