diff --git a/CHANGELOG b/CHANGELOG index 1ccece239..ac25cc510 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,16 @@ ChangeLog ********* +21.0.0 (2021-08-12) +=================== +- Feature: Add read/write support to OneDrive provider, adapted from the previous work of +Ryan Casey (@caseyrygt) & Oleksandr Melnykov (@alexandr-melnikov-dev-pro). +- Feature: Update OneDrive provider to support both OneDrive Personal and OneDrive for School or +Business. Switch the provider to use the MS Graph API and update documentation to follow. +- Fix: Return a valid empty zip file when downloading a directory with no contents. +- Code: Remove unneeded `async`s from synchronous Box tests. +- Code: Pin pip to v18.1 on TravisCI to fix dependency resolution. + 20.1.0 (2020-11-03) =================== - Feature: Support storage limits on osfstorage. The OSF now enforces storage quotas for OSF diff --git a/waterbutler/version.py b/waterbutler/version.py index 9590915c4..8cec01097 100644 --- a/waterbutler/version.py +++ b/waterbutler/version.py @@ -1 +1 @@ -__version__ = '20.1.0' +__version__ = '21.0.0'