Skip to content

Commit 0e3a5d3

Browse files
Merge branch 'master' into feature/dynamic
2 parents 3c8c88b + 3a0765d commit 0e3a5d3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/git-branching-strategies/gitflow-examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Feature branches will take the feature branch name and use that as the pre-relea
1010

1111
Notice after the feature branch is merged, the version on `develop` is `1.3.0-alpha.3`. This is due to `develop` running in *continuous deployment* mode. If you configured `develop` to use *continuous delivery* the version would still be `1.3.0-alpha.1` and you would have to use release tags to increment the `alpha.1`.
1212

13-
You can see the different on the feature branch itself, notice the version is the same before and after the commit on the feature branch? Only the metadata has changed. If you released the feature branch artifacts then tagged the commit, the following commit would increase to `-beta.2`.
13+
You can see the difference on the feature branch itself, notice the version is the same before and after the commit on the feature branch? Only the metadata has changed. If you released the feature branch artifacts then tagged the commit, the following commit would increase to `-beta.2`.
1414

1515
## Pull Request
1616
Because feature branches are most likely pushed to a fork, we are showing the

docs/reference/mainline-development.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ and the version number which will be deployed are often different.
2222
This mode is great if you do not want to tag each release because you simply
2323
deploy every commit to master. The behaviour of this mode is as follows:
2424

25-
1. Calclate a base version (likely a tag in this mode)
25+
1. Calculate a base version (likely a tag in this mode)
2626
2. Walk all commits from the base version commit
2727
3. When a merge commit is found:
2828
- Calculate increments for each direct commit on master
@@ -54,4 +54,4 @@ change the [configuration](../configuration.md) as such:
5454

5555
```yaml
5656
mode: Mainline
57-
```
57+
```

0 commit comments

Comments
 (0)