Skip to content

Commit 7a9922a

Browse files
committedNov 28, 2018
fix: rename default branch
1 parent d6d1bc9 commit 7a9922a

File tree

7 files changed

+7
-12
lines changed

7 files changed

+7
-12
lines changed
 

‎.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ node_js:
77
- 10
88
- 8
99

10-
# Trigger a push build on caribou and greenkeeper branches + PRs build on every branches
10+
# Trigger a push build on master and greenkeeper branches + PRs build on every branches
1111
# Avoid double build on PRs (See https://github.com/travis-ci/travis-ci/issues/1147)
1212
branches:
1313
only:
14-
- caribou
14+
- master
1515
- /^greenkeeper.*$/
1616

1717
# Retry install on fail to avoid failing a build on network/disk/external errors

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
<img alt="Gitter" src="https://badges.gitter.im/semantic-release/semantic-release.svg">
66
</a>
77
<a href="https://travis-ci.org/semantic-release/semantic-release">
8-
<img alt="Travis" src="https://img.shields.io/travis/semantic-release/semantic-release/caribou.svg">
8+
<img alt="Travis" src="https://img.shields.io/travis/semantic-release/semantic-release/master.svg">
99
</a>
1010
<a href="https://codecov.io/gh/semantic-release/semantic-release">
11-
<img alt="Codecov" src="https://img.shields.io/codecov/c/github/semantic-release/semantic-release/caribou.svg">
11+
<img alt="Codecov" src="https://img.shields.io/codecov/c/github/semantic-release/semantic-release/master.svg">
1212
</a>
1313
<a href="https://greenkeeper.io">
1414
<img alt="Greenkeeper" src="https://badges.greenkeeper.io/semantic-release/semantic-release.svg">

‎bin/semantic-release.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ if (!semver.satisfies(process.version, pkg.engines.node)) {
1616
console.error(
1717
`[semantic-release]: node version ${pkg.engines.node} is required. Found ${process.version}.
1818
19-
See https://github.com/semantic-release/semantic-release/blob/caribou/docs/support/node-version.md for more details and solutions.`
19+
See https://github.com/semantic-release/semantic-release/blob/master/docs/support/node-version.md for more details and solutions.`
2020
);
2121
process.exit(1);
2222
}

‎codecov.yml

-2
This file was deleted.

‎docs/extending/plugins-list.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
## Community plugins
3737

38-
[Open a Pull Request](https://github.com/semantic-release/semantic-release/blob/caribou/CONTRIBUTING.md#submitting-a-pull-request) to add your plugin to the list.
38+
[Open a Pull Request](https://github.com/semantic-release/semantic-release/blob/master/CONTRIBUTING.md#submitting-a-pull-request) to add your plugin to the list.
3939

4040
- [semantic-release-docker](https://github.com/felixfbecker/semantic-release-docker)
4141
- `verifyConditions`: Verify that all needed configuration is present and login to the Docker registry.

‎lib/definitions/errors.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const {RELEASE_TYPE} = require('./constants');
66

77
const homepage = url.format({...url.parse(pkg.homepage), hash: null});
88
const stringify = obj => (isString(obj) ? obj : inspect(obj, {breakLength: Infinity, depth: 2, maxArrayLength: 5}));
9-
const linkify = file => `${homepage}/blob/caribou/${file}`;
9+
const linkify = file => `${homepage}/blob/master/${file}`;
1010

1111
module.exports = {
1212
ENOGITREPO: ({cwd}) => ({

‎package.json

-3
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,6 @@
112112
"publishConfig": {
113113
"tag": "next"
114114
},
115-
"release": {
116-
"branch": "caribou"
117-
},
118115
"repository": {
119116
"type": "git",
120117
"url": "git+https://github.com/semantic-release/semantic-release.git"

0 commit comments

Comments
 (0)
Please sign in to comment.