Skip to content

Commit

Permalink
Merge pull request #455 from hilary/prepare-release
Browse files Browse the repository at this point in the history
bump version to 1.19.0
  • Loading branch information
hilary committed May 31, 2019
2 parents 477ac37 + dabe506 commit e671864
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,13 @@

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

## [1.19.0] - 2019-05-31

- #454 Ensure all 'get' and 'list' commands support the 'format' flag - @andrewsomething
- #453 fix doctl compute ssh in snap - @hilary
- #450 update snap build - @hilary
- #447 Unhide the command "completion" + prevent it from being autocompleted - @kamaln7

## [1.18.0] - 2019-05-15

- #443 Remove beta flag from Kubernetes commands. - @adamwg
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,6 +1,6 @@
FROM alpine:3.8

ENV DOCTL_VERSION=1.18.0
ENV DOCTL_VERSION=1.19.0

RUN apk add --no-cache curl

Expand Down
27 changes: 21 additions & 6 deletions README.md
Expand Up @@ -11,6 +11,10 @@ Available Commands:
auth auth commands
completion completion commands
compute compute commands
databases database commands
help Help about any command
kubernetes kubernetes commands
projects projects commands
version show the current version
Flags:
Expand All @@ -28,19 +32,29 @@ Use "doctl [command] --help" for more information about a command.

## Installing `doctl`

There are four ways to install `doctl`: using a package manager, downloading a GitHub release, building a development version from source, or building it with [Docker](https://www.digitalocean.com/community/tutorials/the-docker-ecosystem-an-introduction-to-common-components).
There are four ways to install `doctl`:

1. using a package manager,
1. downloading a GitHub release,
1. building a development version from source,
1. building it with [Docker](https://www.digitalocean.com/community/tutorials/the-docker-ecosystem-an-introduction-to-common-components).

### Option 1 – Using a Package Manager (Preferred)

A package manager allows you to install and keep up with new `doctl` versions using only a few commands. Currently, `doctl` is available as part of [Homebrew](https://brew.sh/) for macOS and GNU/Linux users.
A package manager allows you to install and keep up with new `doctl` versions using only a few commands.
Our community distributes `doctl` via a growing set of package managers in addition to the officially
supported set listed below; chances are good a solution exists for your platform.

#### MacOS

You can use [Homebrew](https://brew.sh/) to install `doctl` on macOS with this command:

```
brew install doctl
```

<!--- TODO(eddiezane): Uncomment once Snap is updated
#### Snap supported OS

You can use [Snap](https://snapcraft.io/) on [Snap-supported](https://snapcraft.io/docs/core/install) systems to install `doctl` with this command:

```
Expand All @@ -53,10 +67,11 @@ If you want to use `doctl compute ssh`, you'll need to connect the doctl snap to
sudo snap connect doctl:ssh-keys :ssh-keys
```

-->
#### Arch Linux

Arch users not using a package manager can install from the [AUR](https://aur.archlinux.org/packages/doctl-bin/).

#### Arch Linux
Arch users not using a package manager can install from the [AUR](https://aur.archlinux.org/packages/doctl-bin/).
#### Windows

Support for Windows package managers is on the way.

Expand Down
2 changes: 1 addition & 1 deletion doit.go
Expand Up @@ -50,7 +50,7 @@ var (
// DoitVersion is doit's version.
DoitVersion = Version{
Major: 1,
Minor: 18,
Minor: 19,
Patch: 0,
Label: "dev",
}
Expand Down
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
@@ -1,5 +1,5 @@
name: doctl
version: "1.18.0"
version: "1.19.0"
summary: A command line tool for DigitalOcean services
description: doctl is a command line tool for DigitalOcean servics using the API.

Expand Down

0 comments on commit e671864

Please sign in to comment.