From 5ef931753ec9cc73f5c2fb4add231feae6b733c7 Mon Sep 17 00:00:00 2001 From: Tyrel Souza Date: Mon, 4 Jun 2018 10:06:11 -0400 Subject: [PATCH] Version 1.0.1 --- CONTRIBUTORS.md | 5 +++++ README.md | 1 + docs/conf.py | 2 +- setup.py | 6 +++--- 4 files changed, 10 insertions(+), 4 deletions(-) create mode 100644 CONTRIBUTORS.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md new file mode 100644 index 0000000..ba00e82 --- /dev/null +++ b/CONTRIBUTORS.md @@ -0,0 +1,5 @@ +Primary Contributors + +* Tyrel Souza +* Pamela McA'Nulty + diff --git a/README.md b/README.md index 1aba6be..93fb105 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,7 @@ I will sign everything with 0x769A1BC78A2DDEE2 ## CHANGELOG +- 2018-06-04 [Tyrel Souza] Move to gitlab, bump to 1.0.1 - 2018-03-01 [Tyrel Souza] Release Version 1.0.0 - 2018-02-01 [Tyrel Souza] Bump versions to django 1.11 and testing with Python3 - 2017-05-10 [Pamela McA'Nulty] Have save overwrite existing files diff --git a/docs/conf.py b/docs/conf.py index 2f689df..10537d5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -54,7 +54,7 @@ author = u'Tyrel Souza' # built documents. # # The short X.Y version. -version = u'1.0.0' +version = u'1.0.1' # The full version, including alpha/beta/rc tags. release = version diff --git a/setup.py b/setup.py index a9ea4f1..52e6151 100644 --- a/setup.py +++ b/setup.py @@ -25,13 +25,13 @@ class CleanCommand(Command): setup( name="django-dbfilestorage", - version="1.0.0", + version="1.0.1", description="Database backed file storage for testing.", long_description="Database backed file storage for testing. Stores files as base64 encoded textfields.", author="Tyrel Souza", author_email="tyrelsouza@gmail.com", - url="https://github.com/tyrelsouza/django-dbfilestorage", - download_url="https://github.com/tyrelsouza/django-dbfilestorage.git", + url="https://gitlab.com/tyrelsouza/django-dbfilestorage", + download_url="https://gitlab.com/tyrelsouza/django-dbfilestorage.git", license="MIT License", packages=[ "dbfilestorage",