From 2507db9363a60df8146c71880b18028dac7d0d69 Mon Sep 17 00:00:00 2001 From: Andrew Starr-Bochicchio Date: Wed, 8 May 2019 17:12:40 -0400 Subject: [PATCH 1/2] Release v1.17.0 --- CHANGELOG.md | 2 +- Dockerfile | 2 +- README.md | 6 +++--- doit.go | 2 +- snap/snapcraft.yaml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fb1cf63e..64b7781bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All changes to `doctl` will be documented in this file. -## [1.17.0] - UNRELEASED +## [1.17.0] - 2019-05-08 - #438 Remove need to opt-in to database commands. - @andrewsomething - #420 Allow creating Volumes from a Snapshots. - @bentranter diff --git a/Dockerfile b/Dockerfile index 0f816a285..630cf2bc8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.8 -ENV DOCTL_VERSION=1.16.0 +ENV DOCTL_VERSION=1.17.0 RUN apk add --no-cache curl diff --git a/README.md b/README.md index 149fb0b2b..25cbc3618 100644 --- a/README.md +++ b/README.md @@ -66,14 +66,14 @@ For example, with `wget`: ``` cd ~ -wget https://github.com/digitalocean/doctl/releases/download/v1.16.0/doctl--linux-amd64.tar.gz +wget https://github.com/digitalocean/doctl/releases/download/v1.17.0/doctl--linux-amd64.tar.gz ``` Or with `curl`: ``` cd ~ -curl -OL https://github.com/digitalocean/doctl/releases/download/v1.16.0/doctl--linux-amd64.tar.gz +curl -OL https://github.com/digitalocean/doctl/releases/download/v1.17.0/doctl--linux-amd64.tar.gz ``` Extract the binary. On GNU/Linux or OS X systems, you can use `tar`. @@ -87,7 +87,7 @@ Or download and extract with this oneliner: curl -sL https://github.com/digitalocean/doctl/releases/download/v/doctl--linux-amd64.tar.gz | tar -xzv ``` -Where `` is the full semantic version, e.g., `1.15.0`. +Where `` is the full semantic version, e.g., `1.17.0`. On Windows systems, you should be able to double-click the zip archive to extract the `doctl` executable. diff --git a/doit.go b/doit.go index 7ac84fc92..a512a85d1 100644 --- a/doit.go +++ b/doit.go @@ -50,7 +50,7 @@ var ( // DoitVersion is doit's version. DoitVersion = Version{ Major: 1, - Minor: 16, + Minor: 17, Patch: 0, Label: "dev", } diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index 3ab4e0cf2..7a9721fd6 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,5 +1,5 @@ name: doctl -version: "1.16.0" +version: "1.17.0" summary: A command line tool for DigitalOcean services description: doctl is a command line tool for DigitalOcean servics using the API. confinement: classic From 26e5a206203204a916dd66aed0710f782b83e787 Mon Sep 17 00:00:00 2001 From: Andrew Starr-Bochicchio Date: Wed, 8 May 2019 17:30:19 -0400 Subject: [PATCH 2/2] Don't hardcode the version in the README. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 25cbc3618..b5fc3ddde 100644 --- a/README.md +++ b/README.md @@ -66,14 +66,14 @@ For example, with `wget`: ``` cd ~ -wget https://github.com/digitalocean/doctl/releases/download/v1.17.0/doctl--linux-amd64.tar.gz +wget https://github.com/digitalocean/doctl/releases/download/v/doctl--linux-amd64.tar.gz ``` Or with `curl`: ``` cd ~ -curl -OL https://github.com/digitalocean/doctl/releases/download/v1.17.0/doctl--linux-amd64.tar.gz +curl -OL https://github.com/digitalocean/doctl/releases/download/v/doctl--linux-amd64.tar.gz ``` Extract the binary. On GNU/Linux or OS X systems, you can use `tar`.