-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from gridscale/release/release-v0.2.0-beta
Release v0.2.0 beta
- Loading branch information
Showing
12 changed files
with
114 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
gscloud | ||
.DS_Store | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
# Changelog | ||
## v0.2.0-beta (March 11, 2020) | ||
|
||
FEATURES: | ||
* Use standard user-level cache directory https://github.com/gridscale/gscloud/issues/11 | ||
|
||
|
||
## v0.1.0-beta (January 8, 2020) | ||
- Initial release of gscloud | ||
|
||
FEATURES: | ||
* Support make-config for creating a new configuration file | ||
* Support kubernetes cluster sub-commands: save-kubeconfig and exec-credential for managing authentication for cluster | ||
* Support kubernetes cluster sub-commands: save-kubeconfig and exec-credential for managing a cluster's authentication |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Contributing to gscloud | ||
|
||
As an open source project, we encourage and appreciate any kind of contributions like comments, | ||
enhancement requests, bug reports, or code contributions! | ||
|
||
## Development workflow | ||
|
||
* Development is done on the `develop` branch. | ||
* Releases are cut from the `master` branch. | ||
* For anything larger than single commits, please use feature/bugfix branches. | ||
|
||
## Reporting Bugs or Enhancement Requests | ||
|
||
Please submit bugs or enhancement requests through the public bug tracker within the | ||
GitHub project. | ||
|
||
## Submitting Patches | ||
|
||
The gscloud source code is managed using the git distributed source control | ||
management tool <https://www.git-scm.org/>. Please submit patches | ||
accordingly. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
PLATFORMS=windows linux darwin | ||
ARCHES=amd64 | ||
BUILDDIR=build | ||
VERSION=$$(cat VERSION) | ||
EXECUTABLE_NAME=gscloud_$(VERSION) | ||
|
||
buildall: clean build zip | ||
|
||
build: | ||
$(foreach platform,$(PLATFORMS), \ | ||
$(foreach arch,$(ARCHES), \ | ||
mkdir -p $(BUILDDIR); GOOS=$(platform) GOARCH=$(arch) go build -o $(BUILDDIR)/$(EXECUTABLE_NAME)_$(platform)_$(arch);)) | ||
@echo "Renaming Windows file" | ||
@if [ -f $(BUILDDIR)/$(EXECUTABLE_NAME)_windows_$(ARCHES) ]; then mv $(BUILDDIR)/$(EXECUTABLE_NAME)_windows_$(ARCHES) $(BUILDDIR)/$(EXECUTABLE_NAME)_windows_$(ARCHES).exe; fi | ||
|
||
zip: | ||
$(foreach file,$(wildcard $(BUILDDIR)/*),\ | ||
zip -j $(file).zip $(file);) | ||
@if [ -f $(BUILDDIR)/$(EXECUTABLE_NAME)_windows_$(ARCHES).exe.zip ]; then mv $(BUILDDIR)/$(EXECUTABLE_NAME)_windows_$(ARCHES).exe.zip $(BUILDDIR)/$(EXECUTABLE_NAME)_windows_$(ARCHES).zip; fi | ||
|
||
clean: | ||
$(foreach platform,$(PLATFORMS), \ | ||
$(foreach arch,$(ARCHES), \ | ||
rm -f $(BUILDDIR)/gscloud_*;)) | ||
|
||
.PHONY: buildall build clean zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.2.0-beta |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters