Skip to content

Commit

Permalink
Note breaking changes and increment semver major version number by 1.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffbr13 committed Jun 2, 2017
1 parent e583400 commit a62bfeb
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,23 @@ Install with Pip:

```pip install django-s3direct```

### Backwards-Compatiblity

With 1.0.0 supporting multipart-upload, most of the internals have been
changed, a new endpoint has been added, and support has been dropped for
old style positional settings. There are also new requirements to allow
`GET` and `HEAD` cross-origin requests to S3, as well as
the `ETAG` header. Django compatibility has been raised to `>=1.8`.

If you used any of these features or relied on the previous behaviour,
it's recommended that you pin `django-s3direct` to `<1.0` until you
can test the new version in your project:

```sh
pip install 'django-s3direct <1.0'
```


## AWS Setup

### Access Credentials
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='django-s3direct',
version='0.4.11.multipart-upload.3',
version='1.0.0.dev1',
description=('Add direct uploads to S3 functionality with a progress bar'
' to file input fields.'),
long_description=readme,
Expand Down

0 comments on commit a62bfeb

Please sign in to comment.