From 96c68260eac572505f33381e627ad42b61aef357 Mon Sep 17 00:00:00 2001 From: "Jens W. Klein" Date: Mon, 30 May 2022 21:49:48 +0200 Subject: [PATCH] bump version and edit historie --- HISTORY.md | 28 ++++++++++++++++++++++++++++ cookiecutter/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 30 insertions(+), 2 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index b39699c1b..edef710f0 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -2,6 +2,34 @@ History is important, but our current roadmap can be found [here](https://github.com/cookiecutter/cookiecutter/projects) +## 2.1.0 (2022-05-30) + +### Changes + +* Move contributors and backers to credits section (#1599) @doobrie +* test_generate_file_verbose_template_syntax_error fixed (#1671) @MaciejPatro +* Removed changes related to setuptools_scm (#1629) @ozer550 +* Feature/local extensions (#1240) @mwesterhof + +### CI/CD and QA changes + +* Check manifest: pre-commit, fixes, cleaning (#1683) @jensens +* Follow PyPA guide to release package using GitHub Actions. (#1682) @ericof + +### Documentation updates + +* Fix typo in dict_variables.rst (#1680) @ericof +* Documentation overhaul (#1677) @jensens +* Fixed incorrect link on docs. (#1649) @luzfcb + +### Bugfixes + +* Restore accidentally deleted support for click 8.x (#1643) @jaklan + +### This release was made possible by our wonderful contributors: + +@doobrie, @jensens, @ericof, @luzfcb + ## 2.0.2 (2021-12-27) *Remark: This release never made it to official PyPI* diff --git a/cookiecutter/__init__.py b/cookiecutter/__init__.py index eab68df8e..1075a8418 100644 --- a/cookiecutter/__init__.py +++ b/cookiecutter/__init__.py @@ -1,2 +1,2 @@ """Main package for Cookiecutter.""" -__version__ = "2.0.2" +__version__ = "2.1.0" diff --git a/setup.py b/setup.py index 9cb220978..5cd1729bc 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ """cookiecutter distutils configuration.""" from setuptools import setup -version = "2.0.3.dev0" +version = "2.1.0" with open('README.md', encoding='utf-8') as readme_file: readme = readme_file.read()