Skip to content

Commit 69d86a4

Browse files
authored
bump release version to 0.3.7-alpha.preview (#256)
* Bump version to 0.3.7-alpha.preview * Update README.md with task definitions
1 parent c2d9c1b commit 69d86a4

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

Diff for: README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This is **not yet available** until the first stable version is released.
1717
#### Download the latest unstable "alpha" preview
1818

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

2222
- [Linux 64 bit](https://downloads.arduino.cc/arduino-cli/arduino-cli-latest-linux64.tar.bz2)
2323
- [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:
346346
* build: Build the project
347347
* check: Check fmt and lint, `legacy` will be skipped
348348
* check-legacy: Check fmt and lint for the `legacy` package
349+
* protoc: Compile protobuf definitions
350+
* rpc-client: Run the rpc client test routine (server must be already started)
349351
* test: Run the full testsuite, `legacy` will be skipped
350352
* test-integration: Run integration tests only
351353
* test-legacy: Run tests for the `legacy` package

Diff for: Taskfile.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ vars:
6161
sh: echo `go list ./... | grep -v legacy | tr '\n' ' '`
6262

6363
# build vars
64-
VERSIONSTRING: "0.3.6-alpha.preview"
64+
VERSIONSTRING: "0.3.7-alpha.preview"
6565
COMMIT:
6666
sh: echo ${TRAVIS_COMMIT:-`git log -n 1 --format=%h`}
6767
LDFLAGS: >

Diff for: version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
)
2424

2525
var (
26-
defaultVersionString = "0.3.6-alpha.preview"
26+
defaultVersionString = "0.3.7-alpha.preview"
2727
versionString = ""
2828
commit = ""
2929
buildDate = time.Time{}

0 commit comments

Comments
 (0)