diff --git a/.github_changelog_generator b/.github_changelog_generator index 95c4392..94aa08d 100644 --- a/.github_changelog_generator +++ b/.github_changelog_generator @@ -1 +1 @@ -future-release=v1.5.1 +future-release=v1.6.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index c25775b..9775edf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## [v1.6.0](https://github.com/didix21/mdutils/tree/v1.6.0) (2023-04-29) + +[Full Changelog](https://github.com/didix21/mdutils/compare/v1.5.1...v1.6.0) + +**Implemented enhancements:** + +- DEPRECATION on setup.py [\#80](https://github.com/didix21/mdutils/issues/80) +- Code adherence to PEP 8 [\#46](https://github.com/didix21/mdutils/issues/46) +- GH-80: Support poetry build system [\#93](https://github.com/didix21/mdutils/pull/93) ([didix21](https://github.com/didix21)) +- GH-84: Add types to mdutils methods [\#85](https://github.com/didix21/mdutils/pull/85) ([didix21](https://github.com/didix21)) + +**Fixed bugs:** + +- DeprecationWarning with Python 3.11 [\#90](https://github.com/didix21/mdutils/issues/90) + +**Closed issues:** + +- Add types on mdutils methods [\#84](https://github.com/didix21/mdutils/issues/84) + +**Merged pull requests:** + +- GH-90: Avoid warning on python 3.11 [\#92](https://github.com/didix21/mdutils/pull/92) ([didix21](https://github.com/didix21)) +- Fix build badge [\#91](https://github.com/didix21/mdutils/pull/91) ([didix21](https://github.com/didix21)) +- GH-46: Add flake8 config [\#86](https://github.com/didix21/mdutils/pull/86) ([didix21](https://github.com/didix21)) +- Import coverage to codecov [\#66](https://github.com/didix21/mdutils/pull/66) ([didix21](https://github.com/didix21)) + ## [v1.5.1](https://github.com/didix21/mdutils/tree/v1.5.1) (2023-03-11) [Full Changelog](https://github.com/didix21/mdutils/compare/v1.5.0...v1.5.1) @@ -54,7 +80,6 @@ **Merged pull requests:** -- Import coverage to codecov [\#66](https://github.com/didix21/mdutils/pull/66) ([didix21](https://github.com/didix21)) - 62: Move test workflow from travis to github actions [\#65](https://github.com/didix21/mdutils/pull/65) ([didix21](https://github.com/didix21)) ## [v1.3.1](https://github.com/didix21/mdutils/tree/v1.3.1) (2021-07-09) diff --git a/doc/source/conf.py b/doc/source/conf.py index 967812d..4b29018 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '1.5.1' +release = '1.6.0' # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index e8baf89..5ccbe17 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ requires = ["setuptools", "wheel"] [tool.poetry] name = "mdutils" -version = "1.5.1" +version = "1.6.0" description = "Useful package for creating Markdown files while executing python code." authors = ["Didac Coll "] maintainers = ["Didac Coll "] diff --git a/setup.py b/setup.py index ad07c21..e044744 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup setup(name='mdutils', - version='1.5.1', + version='1.6.0', license='MIT', author='Didac Coll', author_email='didaccoll_93@hotmail.com',