Skip to content

Commit

Permalink
Version 0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
psarka committed Sep 13, 2022
1 parent 7437af3 commit a873ab7
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 15 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## [Unreleased]

## [0.18]
- Reshuffle the process lock code and properly document it.
- Revamp the docs and switch from sphinx to mkdocs
- Remove difficult to use tread lock features from docs
- Bring back support for eventlets `spawn_n`
- Bring back support for eventlet `spawn_n`
- Remove support for python3.6. It should still work, but is no longer tested.

## [0.17.3]:
- Allow writer to become a reader in thread ReaderWriter lock
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include CHANGELOG
include CHANGELOG.md
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.3"
_VERSION = "0.18"


def version_string():
Expand Down
11 changes: 2 additions & 9 deletions publish.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
2. Update the version number:

setup.cfg
fasteners/version
fasteners/version.py

4. Make sure that the working directory is clean.

Expand All @@ -24,11 +24,4 @@

7. Tag the git repo.

8. Rebuild the docs

pip install -r requirements-docs.txt
mkdocs build

9. Upload docs to readthedocs:

TODO
8. Read the docs will be updated automatically.
7 changes: 4 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = fasteners
version = 0.17.3
version = 0.18
url = https://github.com/harlowja/fasteners

author = Joshua Harlow
Expand Down Expand Up @@ -33,7 +33,8 @@ license_files = LICENSE
[options]
packages = find:
python_requires = >=3.6
include_package_data = True

[options.packages.find]
exclude = tests
exclude =
tests
tests_eventlet

0 comments on commit a873ab7

Please sign in to comment.