Skip to content

Commit

Permalink
Release version 1.0.1 (#148)
Browse files Browse the repository at this point in the history
* Release version 1.0.1
  • Loading branch information
jcodybaker authored Apr 25, 2019
1 parent cc167ba commit 09cf512
Show file tree
Hide file tree
Showing 4 changed files with 542 additions and 8 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## unreleased

## v1.0.1 - 2019.04.25

* Add tagging support for Volumes via the new `--do-tag` flag
[[GH-130]](https://github.com/digitalocean/csi-digitalocean/pull/130)
* Fix support for volume snapshots by setting snapshot id on volume creation
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Cloud Foundry. Feel free to test it on other CO's and give us a feedback.
## Releases

The DigitalOcean CSI plugin follows [semantic versioning](https://semver.org/).
The current version is: **`v1.0.0`**. The project is still
The current version is: **`v1.0.1`**. The project is still
under active development and may not be production ready. The plugin will be
bumped following the rules below:

Expand Down Expand Up @@ -107,10 +107,10 @@ digitalocean Opaque 1 18h

Before you continue, be sure to checkout to a [tagged
release](https://github.com/digitalocean/csi-digitalocean/releases). Always use the [latest stable version](https://github.com/digitalocean/csi-digitalocean/releases/latest)
For example, to use the latest stable version (`v1.0.0`) you can execute the following command:
For example, to use the latest stable version (`v1.0.1`) you can execute the following command:

```
$ kubectl apply -f https://raw.githubusercontent.com/digitalocean/csi-digitalocean/master/deploy/kubernetes/releases/csi-digitalocean-v1.0.0.yaml
$ kubectl apply -f https://raw.githubusercontent.com/digitalocean/csi-digitalocean/master/deploy/kubernetes/releases/csi-digitalocean-v1.0.1.yaml
```

This file will be always updated to point to the latest stable release. If you
Expand Down Expand Up @@ -226,7 +226,7 @@ Dependencies are managed via [Go modules](https://github.com/golang/go/wiki/Modu
To release a new version bump first the version:

```
$ make NEW_VERSION=v1.0.0 bump-version
$ make NEW_VERSION=v1.0.1 bump-version
```

Make sure everything looks good. Create a new branch with all changes:
Expand All @@ -239,15 +239,15 @@ $ git push origin

After it's merged to master, [create a new Github
release](https://github.com/digitalocean/csi-digitalocean/releases/new) from
master with the version `v1.0.0` and then publish a new docker build:
master with the version `v1.0.1` and then publish a new docker build:

```
$ git checkout master
$ make publish
```

This will create a binary with version `v1.0.0` and docker image pushed to
`digitalocean/do-csi-plugin:v1.0.0`
This will create a binary with version `v1.0.1` and docker image pushed to
`digitalocean/do-csi-plugin:v1.0.1`

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.0.0
v1.0.1
Loading

0 comments on commit 09cf512

Please sign in to comment.