不要怂,就是干,撸起袖子干!

Commit 9ca9c85c by Sushant

docs: notes about v5

1 parent 719f95b7
---
verifyConditions:
- "@semantic-release/npm"
- "@semantic-release/github"
publish:
- "@semantic-release/npm"
- "@semantic-release/github"
prepare:
- "@semantic-release/npm"
...@@ -6,7 +6,6 @@ language: node_js ...@@ -6,7 +6,6 @@ language: node_js
branches: branches:
only: only:
- master - master
- v3
- v5 - v5
- /^greenkeeper/.*$/ - /^greenkeeper/.*$/
except: except:
......
...@@ -14,6 +14,15 @@ ...@@ -14,6 +14,15 @@
Sequelize is a promise-based Node.js ORM for Postgres, MySQL, SQLite and Microsoft SQL Server. It features solid transaction support, relations, read replication and more. Sequelize is a promise-based Node.js ORM for Postgres, MySQL, SQLite and Microsoft SQL Server. It features solid transaction support, relations, read replication and more.
## v5 Beta Release
We have started v5 beta release process. Hopefully this will cover full [v5 milestone](https://github.com/sequelize/sequelize/milestone/18). You can find upgrade guide and changelog [here](https://github.com/sequelize/sequelize/blob/master/docs/upgrade-to-v5.md)
```bash
npm install --save sequelize # will install v4
npm install --save sequelize@next # will install v5-beta
```
## Table of Contents ## Table of Contents
- [Installation](#installation) - [Installation](#installation)
- [Features](#features) - [Features](#features)
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
Sequelize v5 is the next major release after v4 Sequelize v5 is the next major release after v4
## Breaking Changes ## Breaking Changes
### Support for Node 6 and up ### Support for Node 6 and up
...@@ -49,4 +48,6 @@ In v4 it used to compare current time with `deletedAt`. [#8496](https://github.c ...@@ -49,4 +48,6 @@ In v4 it used to compare current time with `deletedAt`. [#8496](https://github.c
__DEV__: _Done, no deprecation_ __DEV__: _Done, no deprecation_
## Changelog
...@@ -135,5 +135,15 @@ ...@@ -135,5 +135,15 @@
"commitizen": { "commitizen": {
"path": "./node_modules/cz-conventional-changelog" "path": "./node_modules/cz-conventional-changelog"
} }
},
"release": {
"branch": "master",
"verifyConditions": [
"@semantic-release/npm",
"@semantic-release/github"
]
},
"publishConfig": {
"tag": "next"
} }
} }
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!