Skip to content
This repository has been archived by the owner on Feb 20, 2020. It is now read-only.

Commit

Permalink
Version bump from 11.0.1 to 11.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
petemoore committed Jan 22, 2019
1 parent 9f6cc54 commit d135c0f
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 8 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Once you have been granted the above scope:
To see a full description of all the config options available to you, run `generic-worker --help`:

```
generic-worker 11.0.1
generic-worker 11.1.0
generic-worker is a taskcluster worker that can run on any platform that supports go (golang).
See http://taskcluster.github.io/generic-worker/ for more details. Essentially, the worker is
Expand Down Expand Up @@ -183,6 +183,9 @@ and reports back results to the queue.
for serving live logs; see
https://github.com/taskcluster/livelog and
https://github.com/taskcluster/stateless-dns-server
rootURL The root URL of the Taskcluster deploment to which
clientId and accessToken grant access. For example,
'https://taskcluster.net'.
signingKeyLocation The PGP signing key for signing artifacts with.
workerId A name to uniquely identify your worker.
workerType This should match a worker_type managed by the
Expand Down Expand Up @@ -394,7 +397,7 @@ go test -v ./...
Run the `release.sh` script like so:

```
$ ./release.sh 11.0.1
$ ./release.sh 11.1.0
```

This will perform some checks, tag the repo, push the tag to github, which will then trigger travis-ci to run tests, and publish the new release.
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ var (
logName = "public/logs/live_backing.log"
logPath = filepath.Join("generic-worker", "live_backing.log")

version = "11.0.1"
version = "11.1.0"
revision = "" // this is set during build with `-ldflags "-X main.revision=$(git rev-parse HEAD)"`
)

Expand Down
2 changes: 1 addition & 1 deletion worker_types/nss-win2012r2-new/userdata
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Expand-ZIPFile -File "C:\nssm-2.24.zip" -Destination "C:\" -Url "http://www.nssm

# download generic-worker
md C:\generic-worker
$client.DownloadFile("https://github.com/taskcluster/generic-worker/releases/download/v11.0.1/generic-worker-windows-amd64.exe", "C:\generic-worker\generic-worker.exe")
$client.DownloadFile("https://github.com/taskcluster/generic-worker/releases/download/v11.1.0/generic-worker-windows-amd64.exe", "C:\generic-worker\generic-worker.exe")

# download livelog
$client.DownloadFile("https://github.com/taskcluster/livelog/releases/download/v1.1.0/livelog-windows-amd64.exe", "C:\generic-worker\livelog.exe")
Expand Down
2 changes: 1 addition & 1 deletion worker_types/nss-win2012r2/userdata
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Expand-ZIPFile -File "C:\nssm-2.24.zip" -Destination "C:\" -Url "http://www.nssm

# download generic-worker
md C:\generic-worker
$client.DownloadFile("https://github.com/taskcluster/generic-worker/releases/download/v11.0.1/generic-worker-windows-amd64.exe", "C:\generic-worker\generic-worker.exe")
$client.DownloadFile("https://github.com/taskcluster/generic-worker/releases/download/v11.1.0/generic-worker-windows-amd64.exe", "C:\generic-worker\generic-worker.exe")

# download livelog
$client.DownloadFile("https://github.com/taskcluster/livelog/releases/download/v1.1.0/livelog-windows-amd64.exe", "C:\generic-worker\livelog.exe")
Expand Down
2 changes: 1 addition & 1 deletion worker_types/win2012r2-cu/userdata
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Expand-ZIPFile -File "C:\nssm-2.24.zip" -Destination "C:\" -Url "http://www.nssm

# download generic-worker
md C:\generic-worker
$client.DownloadFile("https://github.com/taskcluster/generic-worker/releases/download/v11.0.1/generic-worker-windows-amd64.exe", "C:\generic-worker\generic-worker.exe")
$client.DownloadFile("https://github.com/taskcluster/generic-worker/releases/download/v11.1.0/generic-worker-windows-amd64.exe", "C:\generic-worker\generic-worker.exe")

# download livelog
$client.DownloadFile("https://github.com/taskcluster/livelog/releases/download/v1.1.0/livelog-windows-amd64.exe", "C:\generic-worker\livelog.exe")
Expand Down
2 changes: 1 addition & 1 deletion worker_types/win2012r2/userdata
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Expand-ZIPFile -File "C:\nssm-2.24.zip" -Destination "C:\" -Url "http://www.nssm

# download generic-worker
md C:\generic-worker
$client.DownloadFile("https://github.com/taskcluster/generic-worker/releases/download/v11.0.1/generic-worker-windows-amd64.exe", "C:\generic-worker\generic-worker.exe")
$client.DownloadFile("https://github.com/taskcluster/generic-worker/releases/download/v11.1.0/generic-worker-windows-amd64.exe", "C:\generic-worker\generic-worker.exe")

# download livelog
$client.DownloadFile("https://github.com/taskcluster/livelog/releases/download/v1.1.0/livelog-windows-amd64.exe", "C:\generic-worker\livelog.exe")
Expand Down
2 changes: 1 addition & 1 deletion worker_types/win2016/userdata
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Expand-ZIPFile -File "C:\nssm-2.24.zip" -Destination "C:\" -Url "http://www.nssm

# download generic-worker
md C:\generic-worker
$client.DownloadFile("https://github.com/taskcluster/generic-worker/releases/download/v11.0.1/generic-worker-windows-amd64.exe", "C:\generic-worker\generic-worker.exe")
$client.DownloadFile("https://github.com/taskcluster/generic-worker/releases/download/v11.1.0/generic-worker-windows-amd64.exe", "C:\generic-worker\generic-worker.exe")

# download livelog
$client.DownloadFile("https://github.com/taskcluster/livelog/releases/download/v1.1.0/livelog-windows-amd64.exe", "C:\generic-worker\livelog.exe")
Expand Down

0 comments on commit d135c0f

Please sign in to comment.