-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6c99c78
commit 99d95f8
Showing
4 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ Contents | |
tutorials | ||
settings | ||
formfields | ||
releasing | ||
changelog | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
*********************** | ||
Releasing a new version | ||
*********************** | ||
|
||
Steps | ||
===== | ||
|
||
1. Remove previous build directories | ||
|
||
.. code:: shell | ||
rm -rf build dist | ||
2. Update the version number in ``location_field/__init__.py`` | ||
|
||
3. Push changes to GitHub (Pull Request) | ||
|
||
4. Create a new release on GitHub | ||
|
||
5. Build the package | ||
|
||
.. code:: shell | ||
python -m build | ||
6. Upload the package to PyPI | ||
|
||
.. code:: shell | ||
python -m twine upload dist/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
__version__ = "2.7.2" | ||
__version__ = "2.7.3" | ||
|
||
default_app_config = "location_field.apps.DefaultConfig" |