From b5738e740a78296c2d58e00767a38d394ebe9daa Mon Sep 17 00:00:00 2001 From: Misha Balyasin Date: Fri, 28 Oct 2022 12:54:55 +0200 Subject: [PATCH] Bump to 0.4.0 --- CHANGELOG.md | 6 +++++- extra_model/__init__.py | 2 +- setup.cfg | 2 +- tests/test_init.py | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc255c44..018676fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,11 @@ 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). -## [Unrealeased] +## Unrealesed + +### Changed + +## [0.4.0] ### Changed - Updated all versions to the latest available (courtesy of `dependabot`) diff --git a/extra_model/__init__.py b/extra_model/__init__.py index e3049f2a..8eb75a5c 100644 --- a/extra_model/__init__.py +++ b/extra_model/__init__.py @@ -2,4 +2,4 @@ from extra_model._models import ExtraModel, extra_factory # noqa -__version__ = "0.3.0" +__version__ = "0.4.0" diff --git a/setup.cfg b/setup.cfg index e51504dc..341aadc1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -45,7 +45,7 @@ console_scripts = extra-model-setup = extra_model._cli:entrypoint_setup [bumpversion] -current_version = 0.3.0 +current_version = 0.4.0 commit = True tag = True diff --git a/tests/test_init.py b/tests/test_init.py index c69b9bce..48919dc7 100644 --- a/tests/test_init.py +++ b/tests/test_init.py @@ -3,4 +3,4 @@ def test_init(): - assert extra_model.__version__ == "0.3.0" + assert extra_model.__version__ == "0.4.0"