diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 4599751..d67eca6 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -1,5 +1,5 @@ -name-template: '$RESOLVED_VERSION' -tag-template: '$RESOLVED_VERSION' +name-template: 'v$RESOLVED_VERSION' +tag-template: 'v$RESOLVED_VERSION' categories: - title: '🚀 Features' labels: diff --git a/.github_changelog_generator b/.github_changelog_generator index 3c02d13..dda671c 100644 --- a/.github_changelog_generator +++ b/.github_changelog_generator @@ -1 +1 @@ -future-release=v1.3.0 +future-release=v1.3.1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c1e8aa..cb7d3a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [v1.3.1](https://github.com/didix21/mdutils/tree/v1.3.1) (2021-07-10) + +[Full Changelog](https://github.com/didix21/mdutils/compare/v1.3.0...v1.3.1) + +**Fixed bugs:** + +- NameError: name 'create\_md\_file' is not define [\#50](https://github.com/didix21/mdutils/issues/50) +- Solve max text length [\#6](https://github.com/didix21/mdutils/issues/6) +- convert value to str before adding it to a char [\#56](https://github.com/didix21/mdutils/pull/56) ([anaskhl](https://github.com/anaskhl)) + +**Merged pull requests:** + +- Add release drafter action [\#58](https://github.com/didix21/mdutils/pull/58) ([didix21](https://github.com/didix21)) +- Add PR labeler action [\#57](https://github.com/didix21/mdutils/pull/57) ([didix21](https://github.com/didix21)) +- Fix \#6: add option to wrap text on new lines, paragraphs and writes [\#53](https://github.com/didix21/mdutils/pull/53) ([mhmdkanj](https://github.com/mhmdkanj)) +- make text\_align be a list not only str or None [\#47](https://github.com/didix21/mdutils/pull/47) ([sgsokol](https://github.com/sgsokol)) + ## [v1.3.0](https://github.com/didix21/mdutils/tree/v1.3.0) (2020-09-12) [Full Changelog](https://github.com/didix21/mdutils/compare/v1.2.2...v1.3.0) diff --git a/doc/source/conf.py b/doc/source/conf.py index 349b4d8..3114a10 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.3.0' +release = '1.3.1' # -- General configuration --------------------------------------------------- @@ -160,4 +160,4 @@ ] -# -- Extension configuration ------------------------------------------------- \ No newline at end of file +# -- Extension configuration ------------------------------------------------- diff --git a/setup.py b/setup.py index 766d860..2a9d88b 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup setup(name='mdutils', - version='1.3.0.1', + version='1.3.1', license='MIT', author='Didac Coll', author_email='didaccoll_93@hotmail.com',