Skip to content

Commit

Permalink
Version 0.17.3
Browse files Browse the repository at this point in the history
  • Loading branch information
psarka committed Jan 25, 2022
1 parent f6bb4e4 commit ffe2bf1
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 10 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
0.17.3:
- Allow writer to become a reader in thread ReaderWriter lock

0.17.2:
- Remove unnecessary setuptools pin

0.17.1:
- Switch to the modern python package build infrastructure

0.17:
0.17: [NEVER RELEASED]
- Remove support for python 3.5 and earlier, including 2.7
- Add support for python 3.9 and 3.10
- Fix a conflict with django lock
Expand Down
2 changes: 1 addition & 1 deletion fasteners/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# License for the specific language governing permissions and limitations
# under the License.

_VERSION = "0.17.2"
_VERSION = "0.17.3"


def version_string():
Expand Down
27 changes: 20 additions & 7 deletions publish.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,25 @@
Make sure the version number is updated.
1. Update the change log:

Make sure that the working directory is clean.
CHANGELOG

source venv/bin/activate
python -m build
2. Update the version number:

Inspect the packages manually
setup.cfg
fasteners/version

twine upload dist/*
4. Make sure that the working directory is clean.

Tag the git repo.

4. Build:

source venv/bin/activate
python -m build

5. Inspect the packages manually.


6. Upload:

twine upload dist/*

7. Tag the git repo.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = fasteners
version = 0.17.2
version = 0.17.3
url = https://github.com/harlowja/fasteners

author = Joshua Harlow
Expand Down

0 comments on commit ffe2bf1

Please sign in to comment.