Skip to content

Commit

Permalink
Merge pull request #382 from digitalocean/hholz/update-changelog
Browse files Browse the repository at this point in the history
update changelog for release 1.12.1
  • Loading branch information
hilary authored Dec 7, 2018
2 parents c85af7a + 0b1089d commit fc78aff
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@

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

## [1.12.1] - UNRELEASED
## [1.12.1] - 2018-12-09

- #354 volumes: Fix droplet ID display when listing volumes - @adamwg
- #357 Change snap to classic confinement - @itbm
- #361 Update help for multi-argument commands - @bengadbois
- #369 No longer require ip-address when creating domains - @andrewsomething
- #372 Add handling of kubeconfig git files for kubernetes commands - @aybabtme
- #379 Expose suitable regions, versions and node sizes in kubernetes commands - @aybabtme
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,25 +58,25 @@ For example, with `wget`:

```
cd ~
wget https://github.com/digitalocean/doctl/releases/download/v1.12.0/doctl-1.12.0-linux-amd64.tar.gz
wget https://github.com/digitalocean/doctl/releases/download/v1.12.1/doctl-1.12.1-linux-amd64.tar.gz
```

Or with `curl`:

```
cd ~
curl -OL https://github.com/digitalocean/doctl/releases/download/v1.12.0/doctl-1.12.0-linux-amd64.tar.gz
curl -OL https://github.com/digitalocean/doctl/releases/download/v1.12.1/doctl-1.12.1-linux-amd64.tar.gz
```

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

```
tar xf ~/doctl-1.12.0-linux-amd64.tar.gz
tar xf ~/doctl-1.12.1-linux-amd64.tar.gz
```

Or download and extract with this oneliner:
```
curl -sL https://github.com/digitalocean/doctl/releases/download/v1.12.0/doctl-1.12.0-linux-amd64.tar.gz | tar -xzv
curl -sL https://github.com/digitalocean/doctl/releases/download/v1.12.1/doctl-1.12.1-linux-amd64.tar.gz | tar -xzv
```

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 = Version{
Major: 1,
Minor: 12,
Patch: 0,
Patch: 1,
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.12.0"
version: "1.12.1"
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 fc78aff

Please sign in to comment.