@@ -176,7 +176,7 @@ Note that `bump` and `pre` don't update the version resource - they just
176176modify the version that gets provided to the build. An output must be
177177explicitly specified to actually update the version.
178178
179- * `pre_without_version`: *Optional.* By default `false`, once it's set to `true`
179+ * `pre_without_version`: *Optional.* By default `false`, once it's set to `true`
180180then PreRelease will be bumped without a version number.
181181
182182
@@ -206,7 +206,7 @@ if the driver supports it. That is, if we pull down version `N`, and bump to
206206because there's some new version `M`, the driver will re-apply the bump to get
207207` M+1` , and try again (in a loop).
208208
209- * `pre_without_version`: *Optional.* By default `false`, once it's set to `true`
209+ * `pre_without_version`: *Optional.* By default `false`, once it's set to `true`
210210then PreRelease will be bumped without a version number.
211211
212212* `get_latest`: *Optional.* See [Check-less Usage](#check-less-usage).
@@ -281,9 +281,9 @@ jobs:
281281 params: {file: version/version}
282282` ` `
283283
284- In above classic mode, Concourse will run periodic checks against the `semver`
285- resource `version`. Each check will do a `git clone` as the driver is `git`.
286- When there are a lot of `semver` resources, checks on `semver` resources may
284+ In above classic mode, Concourse will run periodic checks against the `semver`
285+ resource `version`. Each check will do a `git clone` as the driver is `git`.
286+ When there are a lot of `semver` resources, checks on `semver` resources may
287287also bring burden to the git system as each check will invoke a `git clone`.
288288
289289Given each `semver` resource requires a parameter `file` in `source`, `semver`
@@ -313,12 +313,13 @@ it. Param `get_latest: true` tells the `put` step to only fetch the latest versi
313313without bumping anything. Then the implied `get` will fetch a version as a typical
314314` get` step.
315315
316- If your Concourse or Git (e.g. Gitlab) systems are exhausted by `semver` resources'
316+ If your Concourse or Git (e.g. Gitlab) systems are exhausted by `semver` resources'
317317checks, you may consider reforming pipelines to use this check-less usage.
318318
319319The cons of check-less usage are :
320320
321321* you cannot use `put` step as a job trigger.
322+ * you cannot use `passed` in a `put` step
322323* `put` step with `get_latest: true` will always fetch the latest version, thus
323324 you are not able to pin an old version.
324325
0 commit comments