Skip to content

Commit

Permalink
Closing v1.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Maurício Linhares committed Mar 7, 2018
1 parent 8bbfcdf commit d432a8f
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

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

## [1.7.2] - 2018-03-07

- #186 ssh: windows support for command forwarding - @xmudrii
- #280 commands: show public images for distros and apps by default - @mudrii
- #294 Respect access token flag when calling init as well - @mauricio
- #291 Adds `SizeSlug` to format fields - @lxfontes
- #284 commands: General simplifications - @ferhatelmas
- #282 xdg: fix config path when XDG_CONFIG_HOME is set - @mudrii
- #278 firewall: omit the port field for the icmp - @caglar10ur

## [1.7.1] - 2017-06-06

- #267 Add flag for overriding API endpoint - @utlemming
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.5

ENV DOCTL_VERSION=1.7.1
ENV DOCTL_VERSION=1.7.2

RUN apk add --no-cache curl

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,25 +55,25 @@ For example, with `wget`:

```
cd ~
wget https://github.com/digitalocean/doctl/releases/download/v1.7.1/doctl-1.7.1-linux-amd64.tar.gz
wget https://github.com/digitalocean/doctl/releases/download/v1.7.2/doctl-1.7.2-linux-amd64.tar.gz
```

Or with `curl`:

```
cd ~
curl -OL https://github.com/digitalocean/doctl/releases/download/v1.7.1/doctl-1.7.1-linux-amd64.tar.gz
curl -OL https://github.com/digitalocean/doctl/releases/download/v1.7.2/doctl-1.7.2-linux-amd64.tar.gz
```

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

```
tar xf ~/doctl-1.7.1-linux-amd64.tar.gz
tar xf ~/doctl-1.7.2-linux-amd64.tar.gz
```

Or download and extract with this oneliner:
```
curl -sL https://github.com/digitalocean/doctl/releases/download/v1.7.1/doctl-1.7.1-linux-amd64.tar.gz | tar -xzv
curl -sL https://github.com/digitalocean/doctl/releases/download/v1.7.2/doctl-1.7.2-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: 2 additions & 0 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ go build \
-o $OUT_DIR/doctl \
-ldflags "-X github.com/digitalocean/doctl/Build=`git rev-parse --short HEAD`" \
github.com/digitalocean/doctl/cmd/doctl

chmod +x $OUT_DIR/doctl
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.7.1"
version: "1.7.2"
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

0 comments on commit d432a8f

Please sign in to comment.