Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump version and edit history #1684

Merged
merged 1 commit into from May 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
28 changes: 28 additions & 0 deletions HISTORY.md
Expand Up @@ -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*
Expand Down
2 changes: 1 addition & 1 deletion cookiecutter/__init__.py
@@ -1,2 +1,2 @@
"""Main package for Cookiecutter."""
__version__ = "2.0.2"
__version__ = "2.1.0"
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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()
Expand Down