Skip to content

Commit

Permalink
Merge pull request #144 from ddymko/release-v2.4.0
Browse files Browse the repository at this point in the history
release for v2.4.0
  • Loading branch information
ddymko authored Apr 1, 2021
2 parents 4a353f1 + 774e9c9 commit 356fe49
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [v2.4.0](https://github.com/vultr/vultr-cli/compare/v2.3.0..v2.4.0) (2021-04-01)
### Enhancement
* Add `darwin_arm64` support and builds [PR 143](https://github.com/vultr/vultr-cli/pull/143)

## [v2.3.0](https://github.com/vultr/vultr-cli/compare/v2.2.0..v2.3.0) (2021-02-12)
### Enhancement
* Plans : add `disk count` field [PR 140](https://github.com/vultr/vultr-cli/pull/140)
Expand Down
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,18 @@ $(DIR):
$(DIR)/vultr-cli_darwin_amd64: $(DIR)
env GOOS=darwin GOARCH=amd64 go build -o $@

$(DIR)/vultr-cli_darwin_arm64: $(DIR)
env GOOS=darwin GOARCH=arm64 go build -o $@

$(DIR)/vultr-cli_linux_386: $(DIR)
env GOOS=linux GOARCH=386 go build -o $@

$(DIR)/vultr-cli_linux_amd64: $(DIR)
env GOOS=linux GOARCH=amd64 go build -o $@

$(DIR)/vultr-cli_linux_arm64: $(DIR)
env GOOS=linux GOARCH=arm64 go build -o $@

$(DIR)/vultr-cli_windows_386.exe: $(DIR)
env GOOS=windows GOARCH=386 go build -o $@

Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,13 @@ make build_(pass name of os + arch)
```

The available make build options are
- build_mac
- build_linux_amd64
- build_windows_64
- make builds/vultr-cli_darwin_amd64
- make builds/vultr-cli_darwin_arm64
- make builds/vultr-cli_linux_386
- make builds/builds/vultr-cli_linux_amd64
- make builds/builds/vultr-cli_linux_arm64
- make builds/vultr-cli_windows_386.exe
- make builds/vultr-cli_windows_amd64.exe

Note that the latter method will install the `vultr-cli` executable in `builds/vultr-cli_(name of os + arch)`.

Expand Down
2 changes: 1 addition & 1 deletion cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ var versionCmd = &cobra.Command{
}

func version() string {
return "Vultr-cli v2.3.0"
return "Vultr-cli v2.4.0"
}

0 comments on commit 356fe49

Please sign in to comment.