diff --git a/CHANGELOG.md b/CHANGELOG.md index e9ea9ab..50d32aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ 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] + +## [0.7.0] - 2024-02-04 ### Added - Support for Python 3.12 @@ -78,7 +80,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Support for Decimals and UUIDs -[Unreleased]: https://github.com/cakemanny/fastclasses-json/compare/v0.6.1...HEAD +[Unreleased]: https://github.com/cakemanny/fastclasses-json/compare/v0.7.0...HEAD +[0.7.0]: https://github.com/cakemanny/fastclasses-json/compare/v0.6.1...v0.7.0 [0.6.1]: https://github.com/cakemanny/fastclasses-json/compare/v0.6.0...v0.6.1 [0.6.0]: https://github.com/cakemanny/fastclasses-json/compare/v0.5.0...v0.6.0 [0.5.0]: https://github.com/cakemanny/fastclasses-json/compare/v0.4.1...v0.5.0 diff --git a/setup.py b/setup.py index ea84434..73cec4b 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages # Updated by a script -VERSION = "0.6.1" +VERSION = "0.7.0" with open('README.md', 'r', encoding='utf-8') as f: readme = f.read()