Skip to content

Commit

Permalink
release: 3.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
metaist committed May 22, 2023
1 parent 9846474 commit d12c25c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -e .[dev]
pip install -e ".[dev]"
- name: Format with black
run: |
Expand All @@ -56,5 +56,5 @@ jobs:
- name: Build docs
run: |
pdoc --html --output-dir docs --force src/*
pdoc --html --output-dir docs --force src/$(basename $(pwd))
mv docs/*/* docs/
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@ These are changes that are on `main` that are not yet in `prod`.

---

[3.0.3]: https://github.com/metaist/ezq/compare/3.0.2...3.0.3

## [3.0.3] - 2023-05-22T02:30:15Z

**Fixed**

- GitHub CI command to build docs

---

[3.0.2]: https://github.com/metaist/ezq/compare/3.0.1...3.0.2

## [3.0.2] - 2023-05-22T01:57:42Z
Expand Down
3 changes: 1 addition & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,14 @@ Sections order is: `Fixed`, `Changed`, `Added`, `Deprecated`, `Removed`, `Securi
## Update docs

```bash
pdoc --html --output-dir docs --force src/*
pdoc --html --output-dir docs --force src/$(basename $(pwd))
mv docs/*/* docs/
```

## Check build

```bash
python -c "from setuptools import setup; setup()" build
twine check dist/*
```

## Commit & Push
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ where = ["src"]

[project]
name = "ezq"
version = "3.0.2"
version = "3.0.3"
description = "Simple wrapper for python multiprocessing and threading."
keywords = ["queue", "worker", "multiprocessing", "threading"]
requires-python = ">=3.8"
Expand Down

0 comments on commit d12c25c

Please sign in to comment.