Skip to content

Commit

Permalink
Merge pull request #197 from digitalocean/bake-release
Browse files Browse the repository at this point in the history
1.6.0 release
  • Loading branch information
lxfontes authored Mar 10, 2017
2 parents 9b444d8 + 496be59 commit bb6a963
Show file tree
Hide file tree
Showing 8 changed files with 95 additions and 10 deletions.
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,29 @@

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

## [1.6.0] - 2017-03-10

### Added
- #146 Add the option to run doctl within a docker container - @FuriKuri
- #153 Add ability to delete snapshots and confirmation before delete - @xmudrii
- #158 Add private IPv4 address to output - @johscheuer
- #161 Add multiple tag delete, tag delete confirmation - @xmudrii
- #165 Allow "tags" attribute for droplet create - @mchitten
- #169 Implement new unified Snapshots API - @xmudrii
- #173 Add new actions for Volume and Volume-Action - @xmudrii
- #191 Add certificate commands - @viola
- #193 Implement load-balancer commands - @viola

### Changed
- #160 Improve tag handling for droplet create - @akshaychhajed
- #171 Add shorthand flags - @xmudrii

### Fixed
- #159 Add Volume filtering - @xmudrii
- #177 Fix output color - @xmudrii
- #178 Implement command forwarding for external SSH - @xmudrii
- #196 Add type transfer to image-action transfer - @xmudrii

## [1.5.0] - 2016-10-10

### Added
Expand Down Expand Up @@ -99,4 +122,4 @@ All changes to `doctl` will be documented in this file.
- #44 Clean up references to doit - @aybabtme

### Fixed
- #49 Fix image argument to allow rebuilding droplets - @bryanl
- #49 Fix image argument to allow rebuilding droplets - @bryanl
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:3.4

ENV DOCTL_VERSION=1.5.0
ENV DOCTL_VERSION=1.6.0

RUN apk add --update curl && \
rm -rf /var/cache/apk/*
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ You can download the archive from your browser, or copy its URL and retrieve it
cd ~
# OS X
curl -L https://github.com/digitalocean/doctl/releases/download/v1.5.0/doctl-1.5.0-darwin-10.6-amd64.tar.gz | tar xz
curl -L https://github.com/digitalocean/doctl/releases/download/v1.6.0/doctl-1.6.0-darwin-10.6-amd64.tar.gz | tar xz
# linux (with wget)
wget -qO- https://github.com/digitalocean/doctl/releases/download/v1.5.0/doctl-1.5.0-linux-amd64.tar.gz | tar xz
wget -qO- https://github.com/digitalocean/doctl/releases/download/v1.6.0/doctl-1.6.0-linux-amd64.tar.gz | tar xz
# linux (with curl)
curl -L https://github.com/digitalocean/doctl/releases/download/v1.5.0/doctl-1.5.0-linux-amd64.tar.gz | tar xz
curl -L https://github.com/digitalocean/doctl/releases/download/v1.6.0/doctl-1.6.0-linux-amd64.tar.gz | tar xz
```

Move the `doctl` binary to somewhere in your path. For example:
Expand Down Expand Up @@ -159,4 +159,4 @@ repository is required.
[tutorial]: https://www.digitalocean.com/community/tutorials/how-to-use-doctl-the-official-digitalocean-command-line-client
[doctl-releases]: https://github.com/digitalocean/doctl/releases
[windows-release]: https://github.com/digitalocean/doctl/releases/download/v1.5.0/doctl-1.5.0-windows-4.0-amd64.zip
[windows-release]: https://github.com/digitalocean/doctl/releases/download/v1.6.0/doctl-1.6.0-windows-4.0-amd64.zip
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.5.0"
version: "1.6.0"
summary: A command line tool for DigitalOcean services
description: doctl is a command line tool for DigitalOcean servics using the API.
confinement: strict
Expand Down
4 changes: 2 additions & 2 deletions vendor/github.com/digitalocean/godo/godo.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions vendor/github.com/digitalocean/godo/image_actions.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 35 additions & 0 deletions vendor/github.com/digitalocean/godo/image_actions_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendor/manifest
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"importpath": "github.com/digitalocean/godo",
"repository": "https://github.com/digitalocean/godo",
"vcs": "git",
"revision": "7d7ef61f5659edd106f8092d8d36f2e21309ce4c",
"revision": "84099941ba2381607e1b05ffd4822781af86675e",
"branch": "master"
},
{
Expand Down

0 comments on commit bb6a963

Please sign in to comment.