Skip to content

Commit 9a0dc28

Browse files
authored
0.2.1 release (#71)
1 parent 9a8390a commit 9a0dc28

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
0.2.1
2+
~~~~~~
3+
4+
- The ``timeout`` value is now optional and defaults to that of
5+
``DEFAULT_TIMEOUT`` from ``django.core.cache.backends.base``
6+
`pull#68 <https://github.com/peterbe/django-cache-memoize/pull/68>`
7+
18
0.1.11
29
~~~~~~
310

deploy.sh

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
#!/bin/bash
2-
set -e
1+
#!/usr/bin/env bash
2+
set -eo pipefail
33

4-
rm -fr dist/*
4+
# From https://pypi.org/project/twine/
5+
6+
rm -fr dist/
57
python setup.py sdist bdist_wheel
6-
twine upload dist/*
8+
twine upload --repository django-cache-memoize dist/*

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name="django-cache-memoize",
9-
version="0.2.0",
9+
version="0.2.1",
1010
description=(
1111
"Django utility for a memoization decorator that uses the Django "
1212
"cache framework."

0 commit comments

Comments
 (0)