Skip to content

bump release version to 0.3.7-alpha.preview #256

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 26, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This is **not yet available** until the first stable version is released.
#### Download the latest unstable "alpha" preview

Please note that these are **preview** build, they may have bugs, some features may not work or may be changed without notice,
the latest preview version is `0.3.6-alpha.preview`:
the latest preview version is `0.3.7-alpha.preview`:

- [Linux 64 bit](https://downloads.arduino.cc/arduino-cli/arduino-cli-latest-linux64.tar.bz2)
- [Linux 32 bit](https://downloads.arduino.cc/arduino-cli/arduino-cli-latest-linux32.tar.bz2)
Expand Down Expand Up @@ -346,6 +346,8 @@ Currently Unit and Integration test are available for launch in 2 ways:
* build: Build the project
* check: Check fmt and lint, `legacy` will be skipped
* check-legacy: Check fmt and lint for the `legacy` package
* protoc: Compile protobuf definitions
* rpc-client: Run the rpc client test routine (server must be already started)
* test: Run the full testsuite, `legacy` will be skipped
* test-integration: Run integration tests only
* test-legacy: Run tests for the `legacy` package
Expand Down
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ vars:
sh: echo `go list ./... | grep -v legacy | tr '\n' ' '`

# build vars
VERSIONSTRING: "0.3.6-alpha.preview"
VERSIONSTRING: "0.3.7-alpha.preview"
COMMIT:
sh: echo ${TRAVIS_COMMIT:-`git log -n 1 --format=%h`}
LDFLAGS: >
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
)

var (
defaultVersionString = "0.3.6-alpha.preview"
defaultVersionString = "0.3.7-alpha.preview"
versionString = ""
commit = ""
buildDate = time.Time{}
Expand Down