File tree Expand file tree Collapse file tree 4 files changed +38
-1
lines changed
Expand file tree Collapse file tree 4 files changed +38
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ Changelog
55Versions
66========
77
8+ 2.7.3
9+ -----
10+
11+ - fix: removed console.log calls (#176)
12+ - doc: documented how to release a new version
13+
8142.7.2
915-----
1016
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ Contents
1919 tutorials
2020 settings
2121 formfields
22+ releasing
2223 changelog
2324
2425
Original file line number Diff line number Diff line change 1+ ***********************
2+ Releasing a new version
3+ ***********************
4+
5+ Steps
6+ =====
7+
8+ 1. Remove previous build directories
9+
10+ .. code :: shell
11+
12+ rm -rf build dist
13+
14+ 2. Update the version number in ``location_field/__init__.py ``
15+
16+ 3. Push changes to GitHub (Pull Request)
17+
18+ 4. Create a new release on GitHub
19+
20+ 5. Build the package
21+
22+ .. code :: shell
23+
24+ python -m build
25+
26+ 6. Upload the package to PyPI
27+
28+ .. code :: shell
29+
30+ python -m twine upload dist/*
Original file line number Diff line number Diff line change 1- __version__ = "2.7.2 "
1+ __version__ = "2.7.3 "
22
33default_app_config = "location_field.apps.DefaultConfig"
You can’t perform that action at this time.
0 commit comments