Skip to content

Commit

Permalink
Bump to version v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
didix21 committed Feb 11, 2023
1 parent b507e69 commit 5c71356
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github_changelog_generator
@@ -1 +1 @@
future-release=v1.4.0
future-release=v1.5.0
28 changes: 24 additions & 4 deletions CHANGELOG.md
@@ -1,5 +1,28 @@
# Changelog

## [v1.5.0](https://github.com/didix21/mdutils/tree/v1.5.0) (2023-02-11)

[Full Changelog](https://github.com/didix21/mdutils/compare/v1.4.0...v1.5.0)

**Implemented enhancements:**

- Introduce `header\_id` as parameter for headers [\#78](https://github.com/didix21/mdutils/pull/78) ([kieferro](https://github.com/kieferro))

**Fixed bugs:**

- converting html tables to markdown creates unusable tables [\#73](https://github.com/didix21/mdutils/issues/73)

**Closed issues:**

- Add Id to header [\#77](https://github.com/didix21/mdutils/issues/77)
- mkreports package [\#71](https://github.com/didix21/mdutils/issues/71)

**Merged pull requests:**

- Update setup-python version [\#79](https://github.com/didix21/mdutils/pull/79) ([didix21](https://github.com/didix21))
- Modify tests to fix flakiness [\#76](https://github.com/didix21/mdutils/pull/76) ([blazyy](https://github.com/blazyy))
- Fix typos in README [\#75](https://github.com/didix21/mdutils/pull/75) ([kieferro](https://github.com/kieferro))

## [v1.4.0](https://github.com/didix21/mdutils/tree/v1.4.0) (2022-05-31)

[Full Changelog](https://github.com/didix21/mdutils/compare/v1.3.1...v1.4.0)
Expand Down Expand Up @@ -84,15 +107,12 @@
- Update issue templates [\#35](https://github.com/didix21/mdutils/pull/35) ([didix21](https://github.com/didix21))
- Create CODE\_OF\_CONDUCT.md [\#34](https://github.com/didix21/mdutils/pull/34) ([didix21](https://github.com/didix21))
- update Readme.md [\#32](https://github.com/didix21/mdutils/pull/32) ([Alexmod](https://github.com/Alexmod))
- Add support list in markdown [\#30](https://github.com/didix21/mdutils/pull/30) ([didix21](https://github.com/didix21))

## [v1.2.1](https://github.com/didix21/mdutils/tree/v1.2.1) (2020-05-08)

[Full Changelog](https://github.com/didix21/mdutils/compare/v1.1.1...v1.2.1)

**Merged pull requests:**

- Add support list in markdown [\#30](https://github.com/didix21/mdutils/pull/30) ([didix21](https://github.com/didix21))

## [v1.1.1](https://github.com/didix21/mdutils/tree/v1.1.1) (2020-04-20)

[Full Changelog](https://github.com/didix21/mdutils/compare/v1.1.0...v1.1.1)
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Expand Up @@ -26,7 +26,7 @@
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = '1.4.0'
release = '1.5.0'


# -- General configuration ---------------------------------------------------
Expand Down
1 change: 1 addition & 0 deletions scripts/update-release.py
Expand Up @@ -15,6 +15,7 @@ def replace_on(file, pattern, new_value):
with open(file, 'r+') as file:
content = file.read()
new_content = re.sub(pattern, new_value, content)
file.seek(0)
file.write(new_content)

def replace_version_on_config_py(version):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
@@ -1,7 +1,7 @@
from setuptools import setup

setup(name='mdutils',
version='1.4.0',
version='1.5.0',
license='MIT',
author='Didac Coll',
author_email='didaccoll_93@hotmail.com',
Expand Down

0 comments on commit 5c71356

Please sign in to comment.