Skip to content

Commit

Permalink
bump to 1.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Hilary Holz committed Apr 25, 2019
1 parent c15aeeb commit a29559b
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 9 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All changes to `doctl` will be documented in this file.

## [1.16.0] - 2019-04-25

- #431 Godo v1.13.0 + Tag Support for Volumes + Vol Snapshots - @jcodybaker
- #430 fix --tag for kubernetes create/update - @jcodybaker
- #429 remove flaky tip from travis - @hilary
- #428 Disable terminal ECHO flag when prompting for auth token - @waynr
- #427 add mock assertions for database service - @sunny-b

## [1.15.0] - 2019-04-9

- #422 update CONTRIBUTING.md with info on how to update vendored code - @mregmi
Expand Down
1 change: 0 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ You will also need a valid `GITHUB_TOKEN` environment variable with access to th
Update the version in:
* `README.md`
* `doit.go`
* `Dockerfile`
* `snap/snapcraft.yml`
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.15.0
ENV DOCTL_VERSION=1.16.0

RUN apk add --no-cache curl

Expand Down
17 changes: 12 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,33 +52,40 @@ Support for Windows package managers is on the way.

### Option 2 — Downloading a Release from GitHub

Visit the [Releases page](https://github.com/digitalocean/doctl/releases) for the [`doctl` GitHub project](https://github.com/digitalocean/doctl), and find the appropriate archive for your operating system and architecture. You can download the archive from from your browser, or copy its URL and retrieve it to your home directory with `wget` or `curl`.
Visit the [Releases
page](https://github.com/digitalocean/doctl/releases) for the [`doctl`
GitHub project](https://github.com/digitalocean/doctl), and find the
appropriate archive for your operating system and architecture. You
can download the archive from from your browser, or copy its URL and
retrieve it to your home directory with `wget` or `curl`.

For example, with `wget`:

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

Or with `curl`:

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

Extract the binary. On GNU/Linux or OS X systems, you can use `tar`.

```
tar xf ~/doctl-1.15.0-linux-amd64.tar.gz
tar xf ~/doctl-<version>-linux-amd64.tar.gz
```

Or download and extract with this oneliner:
```
curl -sL https://github.com/digitalocean/doctl/releases/download/v1.15.0/doctl-1.15.0-linux-amd64.tar.gz | tar -xzv
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`.

On Windows systems, you should be able to double-click the zip archive to extract the `doctl` executable.

Move the `doctl` binary to somewhere in your path. For example, on GNU/Linux and OS X systems:
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: 15,
Minor: 16,
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.15.0"
version: "1.16.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 a29559b

Please sign in to comment.