Skip to content

Commit

Permalink
v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KATT committed Feb 21, 2021
1 parent eb5c457 commit e9f4f77
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 23 deletions.
8 changes: 4 additions & 4 deletions examples/next-hello-world/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@examples/hello-world",
"version": "2.1.0",
"version": "2.2.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -11,9 +11,9 @@
"test-start": "start-server-and-test start 3000 test"
},
"dependencies": {
"@trpc/client": "^2.1.0",
"@trpc/react": "^2.1.0",
"@trpc/server": "^2.1.0",
"@trpc/client": "^2.2.0",
"@trpc/react": "^2.2.0",
"@trpc/server": "^2.2.0",
"next": "10.0.4",
"react": "17.0.1",
"react-dom": "17.0.1",
Expand Down
8 changes: 4 additions & 4 deletions examples/next-ssg-chat/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@examples/chat",
"version": "2.1.0",
"version": "2.2.0",
"private": true,
"scripts": {
"dx:next": "prisma generate && next dev",
Expand All @@ -18,9 +18,9 @@
},
"dependencies": {
"@prisma/client": "^2.16.0",
"@trpc/client": "^2.1.0",
"@trpc/react": "^2.1.0",
"@trpc/server": "^2.1.0",
"@trpc/client": "^2.2.0",
"@trpc/react": "^2.2.0",
"@trpc/server": "^2.2.0",
"jest": "^26.6.3",
"jest-playwright": "^0.0.1",
"jest-playwright-preset": "^1.4.5",
Expand Down
8 changes: 4 additions & 4 deletions examples/playground/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@examples/playground",
"version": "2.1.0",
"version": "2.2.0",
"private": true,
"scripts": {
"dev:server": "nodemon -e ts -w . -x ts-node ./src/server.ts",
Expand All @@ -12,9 +12,9 @@
"test-start": "start-server-and-test 'node dist/server' 2021 'node dist/client'"
},
"dependencies": {
"@trpc/client": "^2.1.0",
"@trpc/react": "^2.1.0",
"@trpc/server": "^2.1.0",
"@trpc/client": "^2.2.0",
"@trpc/react": "^2.2.0",
"@trpc/server": "^2.2.0",
"@types/node-fetch": "^2.5.8",
"abort-controller": "^3.0.0",
"body-parser": "^1.19.0",
Expand Down
8 changes: 4 additions & 4 deletions examples/standalone-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@examples/standalone-server",
"version": "2.1.0",
"version": "2.2.0",
"private": true,
"scripts": {
"dev:server": "nodemon -e ts -w . -x ts-node ./src/server.ts",
Expand All @@ -11,9 +11,9 @@
"test-start": "start-server-and-test 'node dist/server' 2022 'node dist/client'"
},
"dependencies": {
"@trpc/client": "^2.1.0",
"@trpc/react": "^2.1.0",
"@trpc/server": "^2.1.0",
"@trpc/client": "^2.2.0",
"@trpc/react": "^2.2.0",
"@trpc/server": "^2.2.0",
"@types/node-fetch": "^2.5.8",
"abort-controller": "^3.0.0",
"node-fetch": "^2.6.1",
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.1.0",
"version": "2.2.0",
"registry": "https://registry.npmjs.org/",
"publishConfig": {
"access": "public"
Expand Down
4 changes: 2 additions & 2 deletions packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@trpc/client",
"version": "2.1.0",
"version": "2.2.0",
"description": "TRPC Client lib",
"author": "KATT",
"license": "MIT",
Expand All @@ -27,7 +27,7 @@
"tslib": "^2.0.0"
},
"devDependencies": {
"@trpc/server": "^2.1.0"
"@trpc/server": "^2.2.0"
},
"publishConfig": {
"access": "public"
Expand Down
6 changes: 3 additions & 3 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@trpc/react",
"version": "2.1.0",
"version": "2.2.0",
"description": "TRPC React lib",
"author": "KATT",
"license": "MIT",
Expand Down Expand Up @@ -38,8 +38,8 @@
"tslib": "^2.0.0"
},
"devDependencies": {
"@trpc/client": "^2.1.0",
"@trpc/server": "^2.1.0",
"@trpc/client": "^2.2.0",
"@trpc/server": "^2.2.0",
"@types/express": "^4.17.11",
"body-parser": "^1.19.0",
"express": "^4.17.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@trpc/server",
"version": "2.1.0",
"version": "2.2.0",
"description": "TRPC Server",
"author": "KATT",
"license": "MIT",
Expand Down

3 comments on commit e9f4f77

@vercel
Copy link

@vercel vercel bot commented on e9f4f77 Feb 21, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

www – ./www

www.tmp.trpc.io
www.trpc.io
www-git-main.tmp.trpc.io
trpc.io

@vercel
Copy link

@vercel vercel bot commented on e9f4f77 Feb 21, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

hello-world – ./examples/next-hello-world

hello-world-virid.vercel.app
hello-world-git-main.tmp.trpc.io
hello-world.trpc.io
hello-world.tmp.trpc.io

@vercel
Copy link

@vercel vercel bot commented on e9f4f77 Feb 21, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

chat – ./examples/next-ssg-chat

trpc.vercel.app
chat-git-main.tmp.trpc.io
chat.trpc.io
chat.tmp.trpc.io

Please sign in to comment.