Skip to content

Commit 844eb40

Browse files
committed
Use main as default branch
1 parent af17ce5 commit 844eb40

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ jobs:
2929

3030
branches:
3131
only:
32-
- master
32+
- main

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ See also the [CHANGELOG](https://github.com/cucumber/cucumber-jvm/blob/master/CH
158158
- [Build] Update Scala versions to 2.11.12 and 2.12.7 ([#11](https://github.com/cucumber/cucumber-jvm-scala/issues/11) Arturas Smorgun)
159159

160160
<!-- Releases -->
161-
[Unreleased]: https://github.com/cucumber/cucumber-jvm-scala/compare/v6.1.1...master
161+
[Unreleased]: https://github.com/cucumber/cucumber-jvm-scala/compare/v6.1.1...main
162162
[6.1.1]: https://github.com/cucumber/cucumber-jvm-scala/compare/v6.0.0...v6.1.1
163163
[6.0.0]: https://github.com/cucumber/cucumber-jvm-scala/compare/v5.7.0...v6.0.0
164164
[5.7.0]: https://github.com/cucumber/cucumber-jvm-scala/compare/v5.6.0...v5.7.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Cucumber Scala
22

33
[![Maven Central](https://img.shields.io/maven-central/v/io.cucumber/cucumber-scala_2.13.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22io.cucumber%22%20AND%20a:%22cucumber-scala_2.13%22)
4-
[![Build Status](https://travis-ci.org/cucumber/cucumber-jvm-scala.svg?branch=master)](https://travis-ci.org/cucumber/cucumber-jvm-scala)
4+
[![Build Status](https://travis-ci.org/cucumber/cucumber-jvm-scala.svg?branch=main)](https://travis-ci.org/cucumber/cucumber-jvm-scala)
55

66
Cucumber Scala is the Scala implementation of [Cucumber](https://cucumber.io/).
77

RELEASING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The process of deploying to maven central has been automated based on
55
the [Complete guide to continuous deployment to maven central from Travis CI](http://www.debonair.io/post/maven-cd/)
66
and will be executed whenever a non-snapshot version is committed.
77

8-
## Check [![Build Status](https://travis-ci.org/cucumber/cucumber-jvm-scala.svg?branch=master)](https://travis-ci.org/cucumber/cucumber-jvm-scala) ##
8+
## Check [![Build Status](https://travis-ci.org/cucumber/cucumber-jvm-scala.svg?branch=main)](https://travis-ci.org/cucumber/cucumber-jvm-scala) ##
99

1010
Is the build passing?
1111

@@ -92,4 +92,4 @@ for example:
9292
mvn release:perform -Psign-source-javadoc -DskipTests=true
9393
```
9494

95-
Go into [Nexus](https://oss.sonatype.org/) and inspect, close and release the staging repository.
95+
Go into [Nexus](https://oss.sonatype.org/) and inspect, close and release the staging repository.

docs/upgrade_v5.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ This means that package names, parameters order, internal code... will be more c
77

88
## Cucumber Core changes
99

10-
Please read the [CHANGELOG](https://github.com/cucumber/cucumber-jvm/blob/master/CHANGELOG.md) from Cucumber Core.
10+
Please read the [CHANGELOG](https://github.com/cucumber/cucumber-jvm/blob/main/CHANGELOG.md) from Cucumber Core.
1111

1212
### Empty values in Datatables
1313

1414
Starting with Cucumber 5.x, empty values in Datatables are now represented as `null` instead of an empty string previously.
1515

16-
Check out the [Empty values section in Transformers documentation](https://github.com/cucumber/cucumber-jvm-scala/blob/master/docs/transformers.md#empty-values) to learn how to have empty values in your Datatables.
16+
Check out the [Empty values section in Transformers documentation](https://github.com/cucumber/cucumber-jvm-scala/blob/main/docs/transformers.md#empty-values) to learn how to have empty values in your Datatables.
1717

1818
You can also consider [upgrading to Cucumber Scala 6.x](upgrade_v6.md) straight away as Cucumber Scala 6.x provides a way to map Datatables as collections of `Option`s so that you don't have to deal with `null` anyway.
1919

docs/upgrade_v6.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Some features will log a deprecation warning.
66

77
See also:
88
- [Cucumber Scala CHANGELOG](../CHANGELOG.md)
9-
- [Cucumber JVM CHANGELOG](https://github.com/cucumber/cucumber-jvm/blob/master/CHANGELOG.md)
10-
- [Cucumber JVM v6 Release Notes](https://github.com/cucumber/cucumber-jvm/blob/master/release-notes/v6.0.0.md)
9+
- [Cucumber JVM CHANGELOG](https://github.com/cucumber/cucumber-jvm/blob/main/CHANGELOG.md)
10+
- [Cucumber JVM v6 Release Notes](https://github.com/cucumber/cucumber-jvm/blob/main/release-notes/v6.0.0.md)
1111

1212
## Map DataTables to Scala types
1313

0 commit comments

Comments
 (0)