From 5186fb272126deb09f4f19394b029cde3f6b8713 Mon Sep 17 00:00:00 2001 From: Peter Kuma Date: Sun, 30 May 2021 16:55:48 +0200 Subject: [PATCH] v1.0.0 --- README.md | 26 ++++++++++++++++++-------- setup.py | 2 +- 2 files changed, 19 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index d729f8b..a8c95bb 100644 --- a/README.md +++ b/README.md @@ -18,20 +18,18 @@ these are not available. * Reports upload progress. * Reports any errors in asynchronous requests if they occur. -### Supported Django version: +### Supported Django versions: -* Django 1.5 (django-attach stable release) -* Django 3.2.3 (django-attach development version) +* Django 3.2.3 Installation ------------ -To install the latest stable release (Python 2, Django 1.5): +To install the latest stable release: - pip install django-attach + pip3 install django-attach -To install the latest development version (Python 3, Django 3.2), download this -repository and run: +To install the latest development version, download this repository and run: python3 setup.py install @@ -141,7 +139,7 @@ when the model form is submitted. If the instance is yet to be created, they are associated with a new Temporary object. Once the model instance is saved, they are re-attached to the instance, and moved in the file storage to the appropriate location (`MEDIA_ROOT/attachment///`). -File deletion is implemented using the ordinary hidden *-DELETE fields +File deletion is implemented using the ordinary hidden \*-DELETE fields as in inline formset, submitted synchronously on model form submission. Known issues @@ -181,3 +179,15 @@ New attachments are uploaded asynchronously when form is submitted. Upload progress is shown. ![](https://github.com/peterkuma/django-attach/raw/master/screenshots/2.png) + +Release Notes +------------- + +### 1.0.0 (2021-05-30) + +- Support for Django 3.2.3. + +### 0.1.1 (2013-09-06) + +- Initial release. +- Support for Django 1.5. diff --git a/setup.py b/setup.py index b9bd2f5..3fa23eb 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='django-attach', - version='1.0.0-alpha.1', + version='1.0.0', packages=['django_attach'], include_package_data=True, license='BSD License',