File tree Expand file tree Collapse file tree 3 files changed +14
-5
lines changed Expand file tree Collapse file tree 3 files changed +14
-5
lines changed Original file line number Diff line number Diff line change
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
+
1
8
0.1.11
2
9
~~~~~~
3
10
Original file line number Diff line number Diff line change 1
- #! /bin/bash
2
- set -e
1
+ #! /usr/ bin/env bash
2
+ set -eo pipefail
3
3
4
- rm -fr dist/*
4
+ # From https://pypi.org/project/twine/
5
+
6
+ rm -fr dist/
5
7
python setup.py sdist bdist_wheel
6
- twine upload dist/*
8
+ twine upload --repository django-cache-memoize dist/*
Original file line number Diff line number Diff line change 6
6
7
7
setup (
8
8
name = "django-cache-memoize" ,
9
- version = "0.2.0 " ,
9
+ version = "0.2.1 " ,
10
10
description = (
11
11
"Django utility for a memoization decorator that uses the Django "
12
12
"cache framework."
You can’t perform that action at this time.
0 commit comments