From ca03939ac9eeecc0c4275bad6e80e954966fee21 Mon Sep 17 00:00:00 2001 From: Lorenzo Setale Date: Mon, 20 Jan 2020 22:24:26 +0100 Subject: [PATCH] bumps version to 1.15.0 Signed-off-by: Lorenzo Setale --- digitalocean/__init__.py | 4 ++-- docs/conf.py | 6 +++--- setup.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/digitalocean/__init__.py b/digitalocean/__init__.py index f989800d..9e26d52c 100644 --- a/digitalocean/__init__.py +++ b/digitalocean/__init__.py @@ -1,11 +1,11 @@ # -*- coding: utf-8 -*- """digitalocean API to manage droplets""" -__version__ = "1.14.0" +__version__ = "1.15.0" __author__ = "Lorenzo Setale ( http://who.is.lorenzo.setale.me/? )" __author_email__ = "lorenzo@setale.me" __license__ = "LGPL v3" -__copyright__ = "Copyright (c) 2012, 2013, 2014, 2015, 2016, 2017, 2018 Lorenzo Setale" +__copyright__ = "Copyright (c) 2012-2020 Lorenzo Setale" from .Manager import Manager from .Droplet import Droplet, DropletError, BadKernelObject, BadSSHKeyFormat diff --git a/docs/conf.py b/docs/conf.py index 6932aa89..ff2f085e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,7 +52,7 @@ # General information about the project. project = u'Python Digitalocean' -copyright = u'2017, Lorenzo Setale' +copyright = u'2020, Lorenzo Setale' author = u'Lorenzo Setale' # The version info for the project you're documenting, acts as replacement for @@ -60,9 +60,9 @@ # built documents. # # The short X.Y version. -version = u'1.14.0' +version = u'1.15.0' # The full version, including alpha/beta/rc tags. -release = u'1.14.0' +release = u'1.15.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 79f13cc3..359b8acf 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup( name='python-digitalocean', - version='1.14.0', + version='1.15.0', description='digitalocean.com API to manage Droplets and Images', author='Lorenzo Setale ( http://who.is.lorenzo.setale.me/? )', author_email='lorenzo@setale.me',