diff --git a/README.md b/README.md index 7e8756a278e..fcced6ed40e 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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 diff --git a/Taskfile.yml b/Taskfile.yml index 7a5d87d9bee..2bcf5ba05b8 100755 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -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: > diff --git a/version/version.go b/version/version.go index b8326b82bd3..bab030b1f55 100644 --- a/version/version.go +++ b/version/version.go @@ -23,7 +23,7 @@ import ( ) var ( - defaultVersionString = "0.3.6-alpha.preview" + defaultVersionString = "0.3.7-alpha.preview" versionString = "" commit = "" buildDate = time.Time{}