Merge pull request #17 from cookiecutter/master

🛠 update to upstream release `2022.02.20`
This commit is contained in:
Abdullah Adeel 2022-02-22 00:26:46 +05:00 committed by GitHub
commit 06396c0e41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 20 additions and 2 deletions

View File

@ -1242,5 +1242,10 @@
"name": "ghazi-git", "name": "ghazi-git",
"github_login": "ghazi-git", "github_login": "ghazi-git",
"twitter_username": "" "twitter_username": ""
},
{
"name": "Cebrail Yılmaz",
"github_login": "b1sar",
"twitter_username": ""
} }
] ]

View File

@ -3,6 +3,11 @@ All enhancements and patches to Cookiecutter Django will be documented in this f
<!-- GENERATOR_PLACEHOLDER --> <!-- GENERATOR_PLACEHOLDER -->
## 2022.02.20
### Changed
- Fix incorrect createdb instruction in documentation ([#3606](https://github.com/cookiecutter/cookiecutter-django/pull/3606))
## 2022.02.16 ## 2022.02.16
### Fixed ### Fixed

View File

@ -404,6 +404,13 @@ Listed in alphabetical order.
</td> </td>
<td></td> <td></td>
</tr> </tr>
<tr>
<td>Cebrail Yılmaz</td>
<td>
<a href="https://github.com/b1sar">b1sar</a>
</td>
<td></td>
</tr>
<tr> <tr>
<td>Chao Yang Wu</td> <td>Chao Yang Wu</td>
<td> <td>

View File

@ -47,7 +47,8 @@ Setup with PostgreSQL_
~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~
#. Create a new PostgreSQL database using createdb_: :: #. Create a new PostgreSQL database using createdb_: ::
$ createdb <what you have entered as the project_slug at setup stage> -U postgres --password <password> $ createdb --username=postgres <project_slug>
``project_slug`` is what you have entered as the project_slug at the setup stage.
.. note:: .. note::

View File

@ -5,7 +5,7 @@ except ImportError:
from distutils.core import setup from distutils.core import setup
# We use calendar versioning # We use calendar versioning
version = "2022.02.16" version = "2022.02.20"
with open("README.rst") as readme_file: with open("README.rst") as readme_file:
long_description = readme_file.read() long_description = readme_file.read()