Commit 66d2b995 authored by semantic-release-bot's avatar semantic-release-bot
Browse files

chore(release): 2.0.0 [skip ci]

# [2.0.0](https://gitlab.com/to-be-continuous/golang/compare/1.3.0...2.0.0) (2021-11-23)

### Features

* **build:** build target platform can be specified ([b068c40e](https://gitlab.com/to-be-continuous/golang/commit/b068c40e5095bb69eb743832fb10e1cdb04d826a))

### BREAKING CHANGES

* **build:** changed `GO_BUILD_ARGS` to `GO_BUILD_FLAGS` variable and `GO_TEST_ARGS` to `GO_TEST_FLAGS` variable. See doc.
parent 8f3efaf3
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
# [2.0.0](https://gitlab.com/to-be-continuous/golang/compare/1.3.0...2.0.0) (2021-11-23)


### Features

* **build:** build target platform can be specified ([b068c40](https://gitlab.com/to-be-continuous/golang/commit/b068c40e5095bb69eb743832fb10e1cdb04d826a))


### BREAKING CHANGES

* **build:** changed `GO_BUILD_ARGS` to `GO_BUILD_FLAGS` variable and `GO_TEST_ARGS` to `GO_TEST_FLAGS` variable. See doc.

# [1.3.0](https://gitlab.com/to-be-continuous/golang/compare/1.2.2...1.3.0) (2021-11-21)


+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ In order to include this template in your project, add the following to your `gi
```yaml
include:
  - project: 'to-be-continuous/golang'
    ref: '1.3.0'
    ref: '2.0.0'
    file: '/templates/gitlab-ci-golang.yml'
```

+2 −2
Original line number Diff line number Diff line
@@ -268,7 +268,7 @@ stages:
    fi
  }

  if [[ "$TEMPLATE_CHECK_UPDATE_DISABLED" != "true" ]]; then check_for_update golang "1.3.0"; fi
  if [[ "$TEMPLATE_CHECK_UPDATE_DISABLED" != "true" ]]; then check_for_update golang "2.0.0"; fi
  unscope_variables

  # ENDSCRIPT
@@ -279,7 +279,7 @@ stages:
  image: $GO_IMAGE
  services:
    - name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"
      command: ["--service", "golang", "1.3.0" ]
      command: ["--service", "golang", "2.0.0" ]
  variables:
    # The directory where 'go install' will install a command.
    GOBIN: "$CI_PROJECT_DIR/bin"