Skip to content

Commit 5c71356

Browse files
author
Dídac Coll
committed
Bump to version v1.5.0
1 parent b507e69 commit 5c71356

File tree

5 files changed

+28
-7
lines changed

5 files changed

+28
-7
lines changed

.github_changelog_generator

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
future-release=v1.4.0
1+
future-release=v1.5.0

CHANGELOG.md

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## [v1.5.0](https://github.com/didix21/mdutils/tree/v1.5.0) (2023-02-11)
4+
5+
[Full Changelog](https://github.com/didix21/mdutils/compare/v1.4.0...v1.5.0)
6+
7+
**Implemented enhancements:**
8+
9+
- Introduce `header\_id` as parameter for headers [\#78](https://github.com/didix21/mdutils/pull/78) ([kieferro](https://github.com/kieferro))
10+
11+
**Fixed bugs:**
12+
13+
- converting html tables to markdown creates unusable tables [\#73](https://github.com/didix21/mdutils/issues/73)
14+
15+
**Closed issues:**
16+
17+
- Add Id to header [\#77](https://github.com/didix21/mdutils/issues/77)
18+
- mkreports package [\#71](https://github.com/didix21/mdutils/issues/71)
19+
20+
**Merged pull requests:**
21+
22+
- Update setup-python version [\#79](https://github.com/didix21/mdutils/pull/79) ([didix21](https://github.com/didix21))
23+
- Modify tests to fix flakiness [\#76](https://github.com/didix21/mdutils/pull/76) ([blazyy](https://github.com/blazyy))
24+
- Fix typos in README [\#75](https://github.com/didix21/mdutils/pull/75) ([kieferro](https://github.com/kieferro))
25+
326
## [v1.4.0](https://github.com/didix21/mdutils/tree/v1.4.0) (2022-05-31)
427

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

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

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

92-
**Merged pull requests:**
93-
94-
- Add support list in markdown [\#30](https://github.com/didix21/mdutils/pull/30) ([didix21](https://github.com/didix21))
95-
96116
## [v1.1.1](https://github.com/didix21/mdutils/tree/v1.1.1) (2020-04-20)
97117

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

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# The short X.Y version
2727
version = ''
2828
# The full version, including alpha/beta/rc tags
29-
release = '1.4.0'
29+
release = '1.5.0'
3030

3131

3232
# -- General configuration ---------------------------------------------------

scripts/update-release.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ def replace_on(file, pattern, new_value):
1515
with open(file, 'r+') as file:
1616
content = file.read()
1717
new_content = re.sub(pattern, new_value, content)
18+
file.seek(0)
1819
file.write(new_content)
1920

2021
def replace_version_on_config_py(version):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22

33
setup(name='mdutils',
4-
version='1.4.0',
4+
version='1.5.0',
55
license='MIT',
66
author='Didac Coll',
77
author_email='[email protected]',

0 commit comments

Comments
 (0)