d0e3bf83b7
- Fix Python version number in cookiecutter --version and test on Python 3.10 (#1621) @ozer550 - Removed changes related to setuptools_scm (#1629) @audreyfeldroy @ozer550 - update to version 2.0.1: - Breaking Changes: - Release preparation for 2.0.1rc1 (#1608) @audreyfeldroy - Replace poyo with pyyaml. (#1489) @dHannasch - Added: Path templates will be rendered when copy_without_render used (#839) @noirbizarre - Added: End of line detection and configuration. (#1407) @insspb - Remove support for python2.7 (#1386) @ssbarnea - Minor Changes: - Adopt setuptools-scm packaging (#1577) @ssbarnea - Log the error message when git clone fails, not just the return code (#1505) @logworthy - allow jinja 3.0.0 (#1548) @wouterdb - Added uuid extension to be able to generate uuids (#1493) @jonaswre - Alert user if choice is invalid (#1496) @dHannasch - Replace poyo with pyyaml. (#1489) @dHannasch - update AUTHOR lead (#1532) @HosamAlmoghraby - Add Python 3.9 (#1478) @gliptak - Added: --list-installed cli option, listing already downloaded cookiecutter packages (#1096) @chrisbrake - Added: Jinja2 Environment extension on files generation stage (#1419) @insspb - Added: --replay-file cli option, for replay file distributing (#906) @Cadair - Added: _output_dir to cookiecutter context (#1034) @Casyfill - Added: CLI option to ignore hooks (#992) @rgreinho - Changed: Generated projects can use multiple type hooks at same time. (sh + py) (#974) @milonimrod - Added: Path templates will be rendered when copy_without_render used (#839) @noirbizarre - Added: End of line detection and configuration. (#1407) @insspb - Making code python 3 only: Remove python2 u' sign, fix some strings (#1402) @insspb - py3: remove futures, six and encoding (#1401) @insspb - Render variables starting with an underscore. (#1339) @smoothml OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/cookiecutter?expand=0&rev=18
25 lines
703 B
Diff
25 lines
703 B
Diff
From 0eceeecf20541e11cc1cc1bef750003309c41eac Mon Sep 17 00:00:00 2001
|
|
From: Sebastian Wagner <sebix@sebix.at>
|
|
Date: Mon, 28 Mar 2022 11:46:50 +0200
|
|
Subject: [PATCH] setup: fix version number
|
|
|
|
minor change to fix the version number in setup.py. that mistake leads
|
|
to wrong version numbers on the local installation
|
|
---
|
|
setup.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/setup.py b/setup.py
|
|
index d703c3c2..23a948ab 100644
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -2,7 +2,7 @@
|
|
"""cookiecutter distutils configuration."""
|
|
from setuptools import setup
|
|
|
|
-version = "2.0.0"
|
|
+version = "2.0.2"
|
|
|
|
with open('README.md', encoding='utf-8') as readme_file:
|
|
readme = readme_file.read()
|