Compare commits

...

2 Commits

Author SHA1 Message Date
Nathan Rajlich
4c0055eaf0 Publish Stable
- vercel@21.3.2
 - @vercel/python@2.0.0
2021-03-02 11:03:53 -08:00
Nathan Rajlich
910a905192 Remove @vercel/python stable publish blacklist (#5920) 2021-03-02 11:01:02 -08:00
3 changed files with 3 additions and 9 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "vercel", "name": "vercel",
"version": "21.3.1", "version": "21.3.2",
"preferGlobal": true, "preferGlobal": true,
"license": "Apache-2.0", "license": "Apache-2.0",
"description": "The command-line interface for Vercel", "description": "The command-line interface for Vercel",
@@ -64,7 +64,7 @@
"@vercel/build-utils": "2.10.0", "@vercel/build-utils": "2.10.0",
"@vercel/go": "1.2.1", "@vercel/go": "1.2.1",
"@vercel/node": "1.9.1-canary.0", "@vercel/node": "1.9.1-canary.0",
"@vercel/python": "1.2.5-canary.1", "@vercel/python": "2.0.0",
"@vercel/ruby": "1.2.6-canary.0", "@vercel/ruby": "1.2.6-canary.0",
"update-notifier": "4.1.0" "update-notifier": "4.1.0"
}, },

View File

@@ -1,6 +1,6 @@
{ {
"name": "@vercel/python", "name": "@vercel/python",
"version": "1.2.5-canary.1", "version": "2.0.0",
"main": "./dist/index.js", "main": "./dist/index.js",
"license": "MIT", "license": "MIT",
"homepage": "https://vercel.com/docs/runtimes#official-runtimes/python", "homepage": "https://vercel.com/docs/runtimes#official-runtimes/python",

6
utils/changelog.js vendored
View File

@@ -48,12 +48,6 @@ async function main() {
pkgs.add('vercel'); pkgs.add('vercel');
} }
// NOTE: `@vercel/python` stable must not be released
// until March 1st, 2021 due to breaking behavior with
// the request URL (https://github.com/vercel/vercel/pull/5739).
// After that date this can be removed.
pkgs.delete('@vercel/python');
const pub = Array.from(pkgs).join(','); const pub = Array.from(pkgs).join(',');
console.log('To publish a stable release, execute the following:'); console.log('To publish a stable release, execute the following:');