diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1b56f1f..95b62ba 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.23.1 +current_version = 0.24.0 [bumpversion:file:setup.py] diff --git a/CHANGELOG.md b/CHANGELOG.md index cbe24c2..2db7b33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,9 @@ 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). -# [unreleased] - XXXX-XX-XX +# [0.24.0] - 2022-11-03 ### Added +- [PR 103](https://github.com/salesforce/django-declarative-apis/pull/103) Update contributing doc - [PR 102](https://github.com/salesforce/django-declarative-apis/pull/102) Fix typos in docs and tests - [PR 101](https://github.com/salesforce/django-declarative-apis/pull/101) Allow Pydantic models as field types - [PR 100](https://github.com/salesforce/django-declarative-apis/pull/100) Improve `errors.py` diff --git a/docs/source/conf.py b/docs/source/conf.py index 6e8aa7a..b38d4b9 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -74,7 +74,7 @@ # built documents. # The full version, including alpha/beta/rc tags. -release = '0.23.1' # set by bumpversion +release = '0.24.0' # set by bumpversion # The short X.Y version. version = release.rsplit('.', 1)[0] diff --git a/setup.py b/setup.py index bc3b611..a19faf6 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setuptools.setup( name="django-declarative-apis", - version="0.23.1", # set by bumpversion + version="0.24.0", # set by bumpversion author="Drew Shafer", url="https://salesforce.com", description="Simple, readable, declarative APIs for Django",