Commit 7b4b5b1d 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/robotframework/compare/1.3.0...2.0.0) (2021-09-08)

### Features

* Change boolean variable behaviour ([59a90089](https://gitlab.com/to-be-continuous/robotframework/commit/59a90089d5cca2c45edd2efc57f2c837c425fb9f)

)

### BREAKING CHANGES

* boolean variable now triggered on explicit 'true' value

Signed-off-by: default avatarCédric OLIVIER <cedric3.olivier@orange.com>
parent b2a0fb3d
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ In order to include this template in your project, add the following to your `gi
```yaml
include:
  - project: 'to-be-continuous/robotframework'
    ref: '1.3.0'
    ref: '2.0.0'
    file: '/templates/gitlab-ci-robotframework.yml'
```

@@ -109,7 +109,7 @@ include:
    file: '/templates/gitlab-ci-docker.yml'
  # Include Robot Framework (to run robotframework-lint)
  - project: 'to-be-continuous/robotframework'
    ref: '1.3.0'
    ref: '2.0.0'
    file: '/templates/gitlab-ci-robotframework.yml'

stages:
@@ -128,7 +128,7 @@ And lastly in the repository containing the application to test, you'll have to
include:
  # Include Robot Framework
  - project: 'to-be-continuous/robotframework'
    ref: '1.3.0'
    ref: '2.0.0'
    file: '/templates/gitlab-ci-robotframework.yml'

variables:
@@ -188,11 +188,11 @@ With:
include:
  # main template
  - project: 'to-be-continuous/robotframework'
    ref: '1.3.0'
    ref: '2.0.0'
    file: '/templates/gitlab-ci-robotframework.yml'
  # Vault variant
  - project: 'to-be-continuous/robotframework'
    ref: '1.3.0'
    ref: '2.0.0'
    file: '/templates/gitlab-ci-robotframework-vault.yml'

variables:
+1 −1
Original line number Diff line number Diff line
@@ -7,6 +7,6 @@
.robotframework-base:
  services:
    - name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"
      command: ["--service", "robotframework", "1.3.0" ]
      command: ["--service", "robotframework", "2.0.0" ]
    - name: "$CI_REGISTRY/to-be-continuous/tools/vault-secrets-provider:master"
      alias: "vault-secrets-provider"
+2 −2
Original line number Diff line number Diff line
@@ -302,7 +302,7 @@ stages:
    fi
  }

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

@@ -311,7 +311,7 @@ stages:
.robotframework-base:
  services:
    - name: "$CI_REGISTRY/to-be-continuous/tools/tracking:master"
      command: ["--service", "robotframework", "1.3.0" ]
      command: ["--service", "robotframework", "2.0.0" ]
  before_script:
    - *robotframework-scripts
    - install_ca_certs "${CUSTOM_CA_CERTS:-$DEFAULT_CA_CERTS}"