From 9934eed29cb8a5cbafbcbe0a8fb8fea8a22c4dd0 Mon Sep 17 00:00:00 2001 From: Ross Duggan Date: Sun, 6 Mar 2016 20:46:12 +0000 Subject: [PATCH] 0.2.3 --- CHANGELOG.md | 16 ++++++++++++++++ LICENSE | 2 +- pontoon/meta.py | 4 ++-- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 407787c..187f56e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## 0.2.3 (March 6, 2016) + +FEATURES: + + * **Add `--user-data` field to `droplet create`.** + * **image slugs (which are the input to the `--image` flag on `droplet + create`) are returned as part of the output from `image list`.** + * **Add `--yes` flag to `droplet resize` and `droplet snapshot`.** + +CHANGES: + + * Better documentation at + * `~/.ssh/id_rsa` and `~/.ssh/id_rsa.pub` are now used as the default + private and public keypair. + * Reinclude some tests which had been skipped due to problems + ## 0.2.2 (March 5, 2016) BUGFIXES: diff --git a/LICENSE b/LICENSE index 7ff1915..ad38579 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2013 Ross Duggan +Copyright (c) 2016 Ross Duggan Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/pontoon/meta.py b/pontoon/meta.py index 74c90ff..0dbbe70 100644 --- a/pontoon/meta.py +++ b/pontoon/meta.py @@ -2,8 +2,8 @@ __name__ = 'pontoon' __description__ = 'A Python CLI for Digital Ocean' -__version__ = '0.2.2' +__version__ = '0.2.3' __author__ = 'Ross Duggan' __author_email__ = 'ross.duggan@acm.org' __url__ = 'https://github.com/duggan/pontoon' -__copyright__ = 'Copyright Ross Duggan 2015' +__copyright__ = 'Copyright Ross Duggan 2016'