Skip to content

Commit

Permalink
release: 0.20.0 (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbdchd authored Sep 19, 2023
1 parent e345bbe commit 1802130
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 41 deletions.
80 changes: 40 additions & 40 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "celery-types"
version = "0.19.0"
version = "0.20.0"
description = "Type stubs for Celery and its related packages"
repository = "https://github.com/sbdchd/celery-types"
readme = "README.md"
Expand Down Expand Up @@ -38,6 +38,7 @@ django-types = "^0.3.1"
django = "^3.1"
ruff = "^0.0.261"
mypy = "^1.2.0"
toml-cli = "^0.5.0"

[tool.ruff]
select = [
Expand Down
8 changes: 8 additions & 0 deletions s/bump-version
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/sh

if [ -z "${1}" ]; then
echo "must specify new version"
exit 1
fi

./.venv/bin/toml set --toml-path pyproject.toml tool.poetry.version "${1}"

0 comments on commit 1802130

Please sign in to comment.