Skip to content

Commit 99d95f8

Browse files
authored
bump: 2.7.3 (#177)
1 parent 6c99c78 commit 99d95f8

File tree

4 files changed

+38
-1
lines changed

4 files changed

+38
-1
lines changed

docs/source/changelog.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ Changelog
55
Versions
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+
814
2.7.2
915
-----
1016

docs/source/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Contents
1919
tutorials
2020
settings
2121
formfields
22+
releasing
2223
changelog
2324

2425

docs/source/releasing.rst

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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/*

location_field/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "2.7.2"
1+
__version__ = "2.7.3"
22

33
default_app_config = "location_field.apps.DefaultConfig"

0 commit comments

Comments
 (0)