From 18b0ec4642aa7ff06a68683fd18ec95c7cf56860 Mon Sep 17 00:00:00 2001 From: Carol Willing Date: Fri, 7 May 2021 12:20:21 -0700 Subject: [PATCH 1/4] add changelog for past 2 releases --- CHANGELOG.rst | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 CHANGELOG.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst new file mode 100644 index 0000000..71b3c1b --- /dev/null +++ b/CHANGELOG.rst @@ -0,0 +1,32 @@ +========= +Changelog +========= + +`2021.05 `_ +------------------------------------------------------------------------------ + + + + +`2020.12 `_ +------------------------------------------------------------------------------ + +- Updated the readme, to remind user to install the package in a virtual environment. (#41) + Contributed by Mariatta. +- Updated the package url, using the GitHub repository instead of docs.python.org (#49) + Contributed by Pradyun Gedam. +- Added license information to the footer of the doc (#36) + Contributed by Todd. +- Fixed typo in the footer (#52) + Contributed by Dominic Davis-Foster. +- Added information on how to use the package (#32) + Contributed by Tapasweni Pathak. +- Fixed code formatting (#53). + Contributed by Hugo van Kemenade. +- Fixed code bgcolor and codetextcolor for Sphinx 3.1.0+ (#57) + Contributed by Zhiming Wang. + +`2018.2 `_ +--------------------------------------------------------------------------- + +Initial release. From 27f43c19874f7b742bc52dbed66c43fcb32ba3da Mon Sep 17 00:00:00 2001 From: Carol Willing Date: Fri, 7 May 2021 12:36:33 -0700 Subject: [PATCH 2/4] Add unreleased changes --- CHANGELOG.rst | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 71b3c1b..117d60d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,7 +5,16 @@ Changelog `2021.05 `_ ------------------------------------------------------------------------------ - +- Make the theme responsive (#46) + Contributed by Olga Bulat. +- Use Python 3.8 for the Github Actions (#71) + Contributed by Stéphane Wirtel. +- Use default pygments theme (#68) + Contributed by Aaron Carlisle. +- Test Github action to validate the theme against docsbuild scripts. (#69) + Contributed by Julien Palard. +- Add the copy button to pycon3 highlighted code blocks. (#64) + Contributed by Julien Palard. `2020.12 `_ From 993d905b34c353c15f8505c02217f7e215d591cb Mon Sep 17 00:00:00 2001 From: Carol Willing Date: Fri, 7 May 2021 12:39:51 -0700 Subject: [PATCH 3/4] bump release version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0378da7..a74f3b6 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ name='python-docs-theme', # Version is date based as year.month[.serial], where serial is used # if multiple releases are needed to address build failures. - version='2020.12.post1', + version='2021.05', description='The Sphinx theme for the CPython docs and related projects', long_description=long_description, author='PyPA', From f17c66c5c8a666ae50d7ab7dd8a4378cfe7a922b Mon Sep 17 00:00:00 2001 From: Carol Willing Date: Fri, 7 May 2021 12:54:05 -0700 Subject: [PATCH 4/4] add pyproject toml file --- pyproject.toml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..de11f32 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[build-system] +requires = [ + "setuptools>=42", + "wheel" +] +build-backend = "setuptools.build_meta" +