diff --git a/pyosf/CHANGELOG.txt b/pyosf/CHANGELOG.txt index 7fe0305..edfb116 100644 --- a/pyosf/CHANGELOG.txt +++ b/pyosf/CHANGELOG.txt @@ -1,6 +1,13 @@ Changelog ============== +1.0.5 +---------- + + - more robust sync: no longer assuming that the upload was successful + - also using a simpler upload if file size is small and only using chunks + for larger files + 1.0.4 ---------- @@ -13,7 +20,7 @@ Changelog use in menu entries) - pyosf.Project doesn't connect to the osf online project until actually needed - Fixed progress updating for threaded uploads - + 1.0.2 ---------- diff --git a/pyosf/__init__.py b/pyosf/__init__.py index cde8895..6be5c29 100644 --- a/pyosf/__init__.py +++ b/pyosf/__init__.py @@ -1,4 +1,4 @@ -__version__ = '1.0.4' +__version__ = '1.0.5' __license__ = 'MIT' __author__ = 'Jonathan Peirce' __author_email__ = 'jon@peirce.org.uk'