Skip to content

Commit 9634338

Browse files
committed
chore: rename 'master' branch to 'main'
1 parent 2249ded commit 9634338

File tree

14 files changed

+488
-488
lines changed

14 files changed

+488
-488
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!--
1+
<!--
22
Thanks for wanting to fix something on Sequelize - we already love you!
33
Please fill in the template below.
44
If unsure about something, just do as best as you're able.
@@ -15,7 +15,7 @@ _Please make sure to review and check all of these items:_
1515
- [ ] Have you added new tests to prevent regressions?
1616
- [ ] Is a documentation update included (if this change modifies existing APIs, or introduces new ones)?
1717
- [ ] Did you update the typescript typings accordingly (if applicable)?
18-
- [ ] Did you follow the commit message conventions explained in [CONTRIBUTING.md](https://github.com/sequelize/sequelize/blob/master/CONTRIBUTING.md)?
18+
- [ ] Did you follow the commit message conventions explained in [CONTRIBUTING.md](https://github.com/sequelize/sequelize/blob/main/CONTRIBUTING.md)?
1919

2020
<!-- NOTE: these things are not required to open a PR and can be done afterwards / while the PR is open. -->
2121

CONTRIBUTING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ We're glad to get pull request if any functionality is missing or something is b
2323

2424
- Explain the issue that your PR is solving - or link to an existing issue
2525
- Make sure that all existing tests pass
26-
- Make sure you followed [coding guidelines](https://github.com/sequelize/sequelize/blob/master/CONTRIBUTING.md#coding-guidelines)
26+
- Make sure you followed [coding guidelines](https://github.com/sequelize/sequelize/blob/main/CONTRIBUTING.md#coding-guidelines)
2727
- Add some tests for your new functionality or a test exhibiting the bug you are solving. Ideally all new tests should not pass _without_ your changes.
2828
- Use [async/await](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function) in all new tests. Specifically this means:
2929
- don't use `EventEmitter`, `QueryChainer` or the `success`, `done` and `error` events
@@ -153,18 +153,18 @@ Then push and send your pull request. Happy hacking and thank you for contributi
153153

154154
# Coding guidelines
155155

156-
Have a look at our [.eslintrc.json](https://github.com/sequelize/sequelize/blob/master/.eslintrc.json) file for the specifics. As part of the test process, all files will be linted, and your PR will **not** be accepted if it does not pass linting.
156+
Have a look at our [.eslintrc.json](https://github.com/sequelize/sequelize/blob/main/.eslintrc.json) file for the specifics. As part of the test process, all files will be linted, and your PR will **not** be accepted if it does not pass linting.
157157

158158
# Contributing to the documentation
159159

160-
For contribution guidelines for the documentation, see [CONTRIBUTING.DOCS.md](https://github.com/sequelize/sequelize/blob/master/CONTRIBUTING.DOCS.md).
160+
For contribution guidelines for the documentation, see [CONTRIBUTING.DOCS.md](https://github.com/sequelize/sequelize/blob/main/CONTRIBUTING.DOCS.md).
161161

162162
# Publishing a release (For Maintainers)
163163

164-
1. Ensure that latest build on master is green
165-
2. Ensure your local code is up to date (`git pull origin master`)
164+
1. Ensure that latest build on the main branch is green
165+
2. Ensure your local code is up to date (`git pull origin main`)
166166
3. `npm version patch|minor|major` (see [Semantic Versioning](http://semver.org))
167167
4. Update changelog to match version number, commit changelog
168-
5. `git push --tags origin master`
168+
5. `git push --tags origin main`
169169
6. `npm publish .`
170170
7. Copy changelog for version to release notes for version on github

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![npm version](https://badgen.net/npm/v/sequelize)](https://www.npmjs.com/package/sequelize)
44
[![Build Status](https://github.com/sequelize/sequelize/workflows/CI/badge.svg)](https://github.com/sequelize/sequelize/actions?query=workflow%3ACI)
5-
[![codecov](https://badgen.net/codecov/c/github/sequelize/sequelize/master?icon=codecov)](https://codecov.io/gh/sequelize/sequelize)
5+
[![codecov](https://badgen.net/codecov/c/github/sequelize/sequelize/main?icon=codecov)](https://codecov.io/gh/sequelize/sequelize)
66
[![npm downloads](https://badgen.net/npm/dm/sequelize)](https://www.npmjs.com/package/sequelize)
77
[![Merged PRs](https://badgen.net/github/merged-prs/sequelize/sequelize)](https://github.com/sequelize/sequelize)
88
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
@@ -13,7 +13,7 @@ New to Sequelize? Take a look at the [Tutorials and Guides](https://sequelize.or
1313

1414
### v6 Release
1515

16-
You can find detailed changelog [here](https://github.com/sequelize/sequelize/blob/master/docs/manual/other-topics/upgrade-to-v6.md).
16+
You can find detailed changelog [here](https://github.com/sequelize/sequelize/blob/main/docs/manual/other-topics/upgrade-to-v6.md).
1717

1818
## Looking for maintainers
1919
Due to personal reasons a bigger part of the former core maintainers (thanks to all your hard work!) have been rather busy recently. Hence, the available time to look after our beloved ORM has been shrinking and shrinking drastically, generating a great chance for you:
@@ -39,11 +39,11 @@ $ npm i tedious # Microsoft SQL Server
3939

4040
- [v6 Documentation](https://sequelize.org/master)
4141
- [v5/v4/v3 Documentation](https://sequelize.org)
42-
- [Contributing](https://github.com/sequelize/sequelize/blob/master/CONTRIBUTING.md)
42+
- [Contributing](https://github.com/sequelize/sequelize/blob/main/CONTRIBUTING.md)
4343

4444
## Responsible disclosure
4545

46-
If you have security issues to report, please refer to our [Responsible Disclosure Policy](https://github.com/sequelize/sequelize/blob/master/SECURITY.md) for more details.
46+
If you have security issues to report, please refer to our [Responsible Disclosure Policy](https://github.com/sequelize/sequelize/blob/main/SECURITY.md) for more details.
4747

4848
## Resources
4949

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
[![GitHub stars](https://badgen.net/github/stars/sequelize/sequelize)](https://github.com/sequelize/sequelize)
1515
[![Slack Status](http://sequelize-slack.herokuapp.com/badge.svg)](http://sequelize-slack.herokuapp.com/)
1616
[![node](https://badgen.net/npm/node/sequelize)](https://www.npmjs.com/package/sequelize)
17-
[![License](https://badgen.net/github/license/sequelize/sequelize)](https://github.com/sequelize/sequelize/blob/master/LICENSE)
17+
[![License](https://badgen.net/github/license/sequelize/sequelize)](https://github.com/sequelize/sequelize/blob/main/LICENSE)
1818
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
1919

2020
Sequelize is a promise-based Node.js [ORM](https://en.wikipedia.org/wiki/Object-relational_mapping) for [Postgres](https://en.wikipedia.org/wiki/PostgreSQL), [MySQL](https://en.wikipedia.org/wiki/MySQL), [MariaDB](https://en.wikipedia.org/wiki/MariaDB), [SQLite](https://en.wikipedia.org/wiki/SQLite) and [Microsoft SQL Server](https://en.wikipedia.org/wiki/Microsoft_SQL_Server). It features solid transaction support, relations, eager and lazy loading, read replication and more.

0 commit comments

Comments
 (0)