Skip to content

Commit

Permalink
0.2.1 release (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbe authored Dec 18, 2024
1 parent 9a8390a commit 9a0dc28
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
0.2.1
~~~~~~

- The ``timeout`` value is now optional and defaults to that of
``DEFAULT_TIMEOUT`` from ``django.core.cache.backends.base``
`pull#68 <https://github.com/peterbe/django-cache-memoize/pull/68>`

0.1.11
~~~~~~

Expand Down
10 changes: 6 additions & 4 deletions deploy.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/bin/bash
set -e
#!/usr/bin/env bash
set -eo pipefail

rm -fr dist/*
# From https://pypi.org/project/twine/

rm -fr dist/
python setup.py sdist bdist_wheel
twine upload dist/*
twine upload --repository django-cache-memoize dist/*
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name="django-cache-memoize",
version="0.2.0",
version="0.2.1",
description=(
"Django utility for a memoization decorator that uses the Django "
"cache framework."
Expand Down

0 comments on commit 9a0dc28

Please sign in to comment.