Skip to content

Commit 0f63a77

Browse files
committed
v3.0.0-canary.2
1 parent ec931bf commit 0f63a77

File tree

16 files changed

+42
-42
lines changed

16 files changed

+42
-42
lines changed

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"packages": [
33
"packages/*"
44
],
5-
"version": "3.0.0-canary.1"
5+
"version": "3.0.0-canary.2"
66
}

packages/cache-list/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ampproject/toolbox-cache-list",
3-
"version": "3.0.0-canary.1",
3+
"version": "3.0.0-canary.2",
44
"description": "Lists AMP Caches",
55
"main": "index.js",
66
"repository": {
@@ -24,7 +24,7 @@
2424
},
2525
"homepage": "https://github.com/ampproject/amp-toolbox/tree/main/packages/cache-list",
2626
"dependencies": {
27-
"@ampproject/toolbox-core": "3.0.0-canary.1"
27+
"@ampproject/toolbox-core": "3.0.0-canary.2"
2828
},
2929
"gitHead": "9b159391d776396512b01ec250fa76941713c763"
3030
}

packages/cache-url/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ampproject/toolbox-cache-url",
3-
"version": "2.8.0-canary.6",
3+
"version": "3.0.0-canary.2",
44
"description": "Transform canonical URLs into AMP Cache URLs",
55
"main": "dist/amp-toolbox-cache-url.cjs.js",
66
"types": "index.d.ts",

packages/cli/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ampproject/toolbox-cli",
3-
"version": "3.0.0-canary.1",
3+
"version": "3.0.0-canary.2",
44
"description": "A Command Line Interface (CLI) for amp-toolbox",
55
"main": "index.js",
66
"bin": {
@@ -27,14 +27,14 @@
2727
},
2828
"homepage": "https://github.com/ampproject/amp-toolbox/tree/main/packages/cli",
2929
"dependencies": {
30-
"@ampproject/toolbox-cache-list": "3.0.0-canary.1",
30+
"@ampproject/toolbox-cache-list": "3.0.0-canary.2",
3131
"@ampproject/toolbox-cache-url": "^2.8.0",
32-
"@ampproject/toolbox-core": "3.0.0-canary.1",
33-
"@ampproject/toolbox-linter": "3.0.0-canary.1",
34-
"@ampproject/toolbox-optimizer": "3.0.0-canary.1",
35-
"@ampproject/toolbox-runtime-fetch": "3.0.0-canary.1",
36-
"@ampproject/toolbox-runtime-version": "3.0.0-canary.1",
37-
"@ampproject/toolbox-update-cache": "3.0.0-canary.1",
32+
"@ampproject/toolbox-core": "3.0.0-canary.2",
33+
"@ampproject/toolbox-linter": "3.0.0-canary.2",
34+
"@ampproject/toolbox-optimizer": "3.0.0-canary.2",
35+
"@ampproject/toolbox-runtime-fetch": "3.0.0-canary.2",
36+
"@ampproject/toolbox-runtime-version": "3.0.0-canary.2",
37+
"@ampproject/toolbox-update-cache": "3.0.0-canary.2",
3838
"minimist": "1.2.5",
3939
"minimist-options": "4.1.0",
4040
"node-fetch": "2.6.1"

packages/cloudflare-optimizer-scripts/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ampproject/cloudflare-optimizer-scripts",
3-
"version": "3.0.0-canary.1",
3+
"version": "3.0.0-canary.2",
44
"description": "Configuration and scripts for cloudflare-amp-optimizer",
55
"main": "./src/index.js",
66
"files": [
@@ -15,6 +15,6 @@
1515
"author": "AMPHTML Team",
1616
"license": "Apache-2.0",
1717
"dependencies": {
18-
"@ampproject/toolbox-optimizer": "3.0.0-canary.1"
18+
"@ampproject/toolbox-optimizer": "3.0.0-canary.2"
1919
}
2020
}

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ampproject/toolbox-core",
3-
"version": "3.0.0-canary.1",
3+
"version": "3.0.0-canary.2",
44
"description": "Commonly used functionality for amp-toolbox",
55
"main": "index.js",
66
"repository": {

packages/cors/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ampproject/toolbox-cors",
3-
"version": "3.0.0-canary.1",
3+
"version": "3.0.0-canary.2",
44
"description": "An express middleware implementing the AMP CORS protocol",
55
"main": "index.js",
66
"keywords": [
@@ -19,9 +19,9 @@
1919
"author": "AMPHTML Team",
2020
"license": "Apache-2.0",
2121
"dependencies": {
22-
"@ampproject/toolbox-cache-list": "3.0.0-canary.1",
22+
"@ampproject/toolbox-cache-list": "3.0.0-canary.2",
2323
"@ampproject/toolbox-cache-url": "^2.8.0",
24-
"@ampproject/toolbox-core": "3.0.0-canary.1"
24+
"@ampproject/toolbox-core": "3.0.0-canary.2"
2525
},
2626
"bugs": {
2727
"url": "https://github.com/ampproject/amp-toolbox/issues"

packages/linter/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ampproject/toolbox-linter",
3-
"version": "3.0.0-canary.1",
3+
"version": "3.0.0-canary.2",
44
"description": "A linter for AMP documents",
55
"repository": {
66
"type": "git",
@@ -11,10 +11,10 @@
1111
"license": "Apache-2.0",
1212
"author": "AMPHTML Team",
1313
"dependencies": {
14-
"@ampproject/toolbox-cache-list": "3.0.0-canary.1",
14+
"@ampproject/toolbox-cache-list": "3.0.0-canary.2",
1515
"@ampproject/toolbox-cache-url": "2.8.0",
16-
"@ampproject/toolbox-optimizer": "3.0.0-canary.1",
17-
"@ampproject/toolbox-validator-rules": "3.0.0-canary.1",
16+
"@ampproject/toolbox-optimizer": "3.0.0-canary.2",
17+
"@ampproject/toolbox-validator-rules": "3.0.0-canary.2",
1818
"amphtml-validator": "1.0.35",
1919
"chalk": "4.1.1",
2020
"cheerio": "1.0.0-rc.10",

packages/optimizer-docker/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "toolbox-optimizer-docker",
3-
"version": "3.0.0-canary.1",
3+
"version": "3.0.0-canary.2",
44
"description": "Thin wrapper around the amp-optimizer",
55
"main": "index.js",
66
"private": true,
@@ -28,7 +28,7 @@
2828
},
2929
"homepage": "https://github.com/ampproject/amp-toolbox/tree/main/packages/optimizer",
3030
"dependencies": {
31-
"@ampproject/toolbox-optimizer": "3.0.0-canary.1",
31+
"@ampproject/toolbox-optimizer": "3.0.0-canary.2",
3232
"prom-client": "13.1.0"
3333
},
3434
"gitHead": "b86ff10f2a20a9e5f810f31a694c7f020eb291ae"

packages/optimizer-express/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ampproject/toolbox-optimizer-express",
3-
"version": "3.0.0-canary.1",
3+
"version": "3.0.0-canary.2",
44
"description": "Express middleware for @ampproject/toolbox-optimizer",
55
"main": "index.js",
66
"repository": {
@@ -24,9 +24,9 @@
2424
},
2525
"homepage": "https://github.com/ampproject/amp-toolbox/tree/main/packages/optimizer-express",
2626
"dependencies": {
27-
"@ampproject/toolbox-core": "3.0.0-canary.1",
28-
"@ampproject/toolbox-optimizer": "3.0.0-canary.1",
29-
"@ampproject/toolbox-runtime-version": "3.0.0-canary.1",
27+
"@ampproject/toolbox-core": "3.0.0-canary.2",
28+
"@ampproject/toolbox-optimizer": "3.0.0-canary.2",
29+
"@ampproject/toolbox-runtime-version": "3.0.0-canary.2",
3030
"mime-types": "2.1.31",
3131
"whatwg-url": "9.0.0"
3232
},

0 commit comments

Comments
 (0)