Skip to content

Commit

Permalink
Merge pull request #439 from digitalocean/v1.17.0
Browse files Browse the repository at this point in the history
Release v1.17.0
  • Loading branch information
andrewsomething authored May 8, 2019
2 parents 29cff41 + 26e5a20 commit eed1437
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@ For example, with `wget`:

```
cd ~
wget https://github.com/digitalocean/doctl/releases/download/v1.16.0/doctl-<version>-linux-amd64.tar.gz
wget https://github.com/digitalocean/doctl/releases/download/v<version>/doctl-<version>-linux-amd64.tar.gz
```

Or with `curl`:

```
cd ~
curl -OL https://github.com/digitalocean/doctl/releases/download/v1.16.0/doctl-<version>-linux-amd64.tar.gz
curl -OL https://github.com/digitalocean/doctl/releases/download/v<version>/doctl-<version>-linux-amd64.tar.gz
```

Extract the binary. On GNU/Linux or OS X systems, you can use `tar`.
Expand All @@ -87,7 +87,7 @@ Or download and extract with this oneliner:
curl -sL https://github.com/digitalocean/doctl/releases/download/v<version>/doctl-<version>-linux-amd64.tar.gz | tar -xzv
```

Where `<version>` is the full semantic version, e.g., `1.15.0`.
Where `<version>` 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.

Expand Down
2 changes: 1 addition & 1 deletion doit.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ var (
// DoitVersion is doit's version.
DoitVersion = Version{
Major: 1,
Minor: 16,
Minor: 17,
Patch: 0,
Label: "dev",
}
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit eed1437

Please sign in to comment.