Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
peterkuma committed May 30, 2021
1 parent 4df7b1e commit 5186fb2
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 9 deletions.
26 changes: 18 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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/<model>/<id>/`).
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
Expand Down Expand Up @@ -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.
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-attach',
version='1.0.0-alpha.1',
version='1.0.0',
packages=['django_attach'],
include_package_data=True,
license='BSD License',
Expand Down

0 comments on commit 5186fb2

Please sign in to comment.