Skip to content

Commit

Permalink
Version 4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
The n6 Development Team authored and zuo committed Jun 3, 2023
1 parent c3f2d57 commit 1b22c2b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .n6-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.0
4.0.1
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ Some features of this document's format are based on
[Keep a Changelog](https://keepachangelog.com/).


## [4.0.1] - 2023-06-03

Fixed generation of the docs by upgrading `mkdocs` to the version `1.2.4`.


## [4.0.0] - 2023-06-03

**This release is a big milestone.**
Expand Down
2 changes: 1 addition & 1 deletion do_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
'pytest-cov==3.0.0',
'coverage',
'pylint',
'mkdocs==1.2.3',
'mkdocs==1.2.4',
'mkdocs-material==8.0.3',
'waitress',
]
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
mkdocs==1.2.3
mkdocs==1.2.4
mkdocs-material==8.0.3

6 changes: 3 additions & 3 deletions test_do_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -709,8 +709,8 @@ def test__install__components__additional_packages(self):
Call('do_setup.LOGGER.info', "%r installed", 'coverage'),
Call('do_setup.command', "pip install 'pylint'"),
Call('do_setup.LOGGER.info', "%r installed", 'pylint'),
Call('do_setup.command', "pip install 'mkdocs==1.2.3'"),
Call('do_setup.LOGGER.info', "%r installed", 'mkdocs==1.2.3'),
Call('do_setup.command', "pip install 'mkdocs==1.2.4'"),
Call('do_setup.LOGGER.info', "%r installed", 'mkdocs==1.2.4'),
Call('do_setup.command', "pip install 'mkdocs-material==8.0.3'"),
Call('do_setup.LOGGER.info', "%r installed", 'mkdocs-material==8.0.3'),

Expand All @@ -737,7 +737,7 @@ def test__install__components__additional_packages(self):
"\n* <mocked memo: \"pip install 'pytest-cov==3.0.0'\">"
"\n* <mocked memo: \"pip install 'coverage'\">"
"\n* <mocked memo: \"pip install 'pylint'\">"
"\n* <mocked memo: \"pip install 'mkdocs==1.2.3'\">"
"\n* <mocked memo: \"pip install 'mkdocs==1.2.4'\">"
"\n* <mocked memo: \"pip install 'mkdocs-material==8.0.3'\">"
"\n* <mocked memo: \"pip install 'waitress'\">")),
]
Expand Down

0 comments on commit 1b22c2b

Please sign in to comment.