From 61f16e52243154d72463abea85d41c2eafadd273 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cebrail=20Y=C4=B1lmaz?= Date: Sun, 20 Feb 2022 16:21:06 +0300 Subject: [PATCH 1/3] Fix incorrect createdb instruction in documentation (#3606) Co-authored-by: Bruno Alla --- docs/developing-locally.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/developing-locally.rst b/docs/developing-locally.rst index a9a54a03b..3b86ff44e 100644 --- a/docs/developing-locally.rst +++ b/docs/developing-locally.rst @@ -42,7 +42,8 @@ First things first. #. Create a new PostgreSQL database using createdb_: :: - $ createdb -U postgres --password + $ createdb --username=postgres + ``project_slug`` is what you have entered as the project_slug at the setup stage. .. note:: From ef72165b850036a4ed6cf3dcea502df52c60bd9e Mon Sep 17 00:00:00 2001 From: browniebroke Date: Sun, 20 Feb 2022 13:21:34 +0000 Subject: [PATCH 2/3] Update Contributors --- .github/contributors.json | 5 +++++ CONTRIBUTORS.md | 7 +++++++ 2 files changed, 12 insertions(+) diff --git a/.github/contributors.json b/.github/contributors.json index 393a9a4cc..cbe2444ef 100644 --- a/.github/contributors.json +++ b/.github/contributors.json @@ -1242,5 +1242,10 @@ "name": "ghazi-git", "github_login": "ghazi-git", "twitter_username": "" + }, + { + "name": "Cebrail Yılmaz", + "github_login": "b1sar", + "twitter_username": "" } ] \ No newline at end of file diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 4cd8f513a..ca7d812dc 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -404,6 +404,13 @@ Listed in alphabetical order. + + Cebrail Yılmaz + + b1sar + + + Chao Yang Wu From 31294655db97d7ea715e9af38fcdabbc0eab0220 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 21 Feb 2022 02:14:51 +0000 Subject: [PATCH 3/3] Release 2022.02.20 --- CHANGELOG.md | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c5bfcc473..ec3e1fbe2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ All enhancements and patches to Cookiecutter Django will be documented in this f +## 2022.02.20 + +### Changed +- Fix incorrect createdb instruction in documentation ([#3606](https://github.com/cookiecutter/cookiecutter-django/pull/3606)) + ## 2022.02.16 ### Fixed diff --git a/setup.py b/setup.py index 4be18dbfb..0baccf4fb 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ except ImportError: from distutils.core import setup # We use calendar versioning -version = "2022.02.16" +version = "2022.02.20" with open("README.rst") as readme_file: long_description = readme_file.read()