diff --git a/CHANGELOG.md b/CHANGELOG.md index 19b3b22d027fe918f6262180640de8c1ea58d80b..a6b173c43f472ff2d8154b8e997382d1efd69f58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v6.8.0] - 2024-01-17 + - Improve `show_email`: - allow css "klass" @@ -358,7 +360,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [v2.0.0] - 2018-01-12 -[Unreleased]: https://github.com/nim65s/ndh/compare/v6.7.0...master +[Unreleased]: https://github.com/nim65s/ndh/compare/v6.8.0...master +[v6.8.0]: https://github.com/nim65s/ndh/compare/v6.7.0...v6.8.0 [v6.7.0]: https://github.com/nim65s/ndh/compare/v6.6.0...v6.7.0 [v6.6.0]: https://github.com/nim65s/ndh/compare/v6.5.3...v6.6.0 [v6.5.3]: https://github.com/nim65s/ndh/compare/v6.5.2...v6.5.3 diff --git a/ndh/__init__.py b/ndh/__init__.py index f115e3e8a9621e6f7cdee46335f0227df207db92..ca992a74fab0e6eb98baf59c959bb057443f921b 100644 --- a/ndh/__init__.py +++ b/ndh/__init__.py @@ -1,4 +1,4 @@ """Main module entrance.""" -__version__ = "6.7.0" +__version__ = "6.8.0" __version_tuple__ = tuple(int(i) for i in __version__.split(".")) diff --git a/pyproject.toml b/pyproject.toml index b86848dca7b36ea6b2baa42acdffeba542b7cb1f..82de0e5ca3652161e438399a6cb1afc1221de46f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ license = "BSD-2-Clause" name = "ndh" readme = "README.md" repository = "https://github.com/nim65s/ndh.git" -version = "6.7.0" +version = "6.8.0" [tool.poetry.dependencies] django-autoslug = "^1.9.9"