Skip to content
This repository was archived by the owner on Apr 17, 2023. It is now read-only.

Commit d2cb1bc

Browse files
Enda Phelanwtrocki
authored andcommitted
chore: release version 1.0.1
1 parent a4b0f8f commit d2cb1bc

File tree

20 files changed

+58
-54
lines changed

20 files changed

+58
-54
lines changed

docs/releases.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ title: Release Notes
88
This file contains changes and migration steps for the Graphback project.
99
Please follow individual releases for more information.
1010

11-
# 1.0.0
11+
# 1.0.1
1212

1313
### Features
1414

@@ -34,6 +34,10 @@ Please follow individual releases for more information.
3434

3535
* Refactored the Knex Query Mapper ([#2034](https://github.com/aerogear/graphback/pull/2034), fixed by [6d43f28](https://github.com/aerogear/graphback/commit/6d43f288865a2c8c0d441e486a156301ca6cc42a))
3636

37+
## 1.0.0
38+
39+
**INVALID RELEASE**
40+
3741
# 0.16.2
3842

3943
### Bug Fixes

integration/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphback-integration-tests",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"private": true,
55
"description": "Integration tests",
66
"main": "index.js",

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
],
88
"npmClient": "yarn",
99
"useWorkspaces": true,
10-
"version": "1.0.0"
10+
"version": "1.0.1"
1111
}

packages/create-graphback/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-graphback",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Create production-ready GraphQL servers using Graphback",
55
"main": "dist/index.js",
66
"bin": {

packages/graphback-cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphback-cli",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Auto generate resolvers on top of the graphql and database of your choice",
55
"main": "dist/index.js",
66
"bin": {
@@ -48,7 +48,7 @@
4848
"chalk": "2.4.2",
4949
"chokidar": "3.4.2",
5050
"debounce": "1.2.0",
51-
"graphback": "1.0.0",
51+
"graphback": "1.0.1",
5252
"graphql-config": "3.0.3",
5353
"node-emoji": "1.10.0",
5454
"yargs": "16.0.3"

packages/graphback-codegen-client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphback/codegen-client",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "GraphQL-Code-Generator compatible client side queries generator",
55
"main": "dist/index.js",
66
"types": "types/index.d.ts",
@@ -42,7 +42,7 @@
4242
"typescript": "4.0.3"
4343
},
4444
"dependencies": {
45-
"@graphback/core": "1.0.0",
45+
"@graphback/core": "1.0.1",
4646
"pluralize": "8.0.0"
4747
},
4848
"peerDependencies": {

packages/graphback-codegen-schema/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphback/codegen-schema",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "GraphQL-Code-Generator compatibile schema generator",
55
"main": "dist/index.js",
66
"types": "types/index.d.ts",
@@ -43,7 +43,7 @@
4343
"typescript": "4.0.3"
4444
},
4545
"dependencies": {
46-
"@graphback/core": "1.0.0",
46+
"@graphback/core": "1.0.1",
4747
"@graphql-tools/utils": "6.2.3",
4848
"graphql-compose": "7.21.1",
4949
"graphql-metadata": "0.7.6",

packages/graphback-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphback/core",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Api for building Graphback generator metadata",
55
"main": "dist/index.js",
66
"types": "types/index.d.ts",

packages/graphback-datasync/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphback/datasync",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Datasync Plugin for Graphback",
55
"main": "dist/index.js",
66
"types": "types/index.d.ts",
@@ -44,11 +44,11 @@
4444
"typescript": "4.0.3"
4545
},
4646
"dependencies": {
47-
"@graphback/codegen-schema": "1.0.0",
48-
"@graphback/core": "1.0.0",
49-
"@graphback/runtime-mongo": "1.0.0",
47+
"@graphback/codegen-schema": "1.0.1",
48+
"@graphback/core": "1.0.1",
49+
"@graphback/runtime-mongo": "1.0.1",
5050
"@graphql-tools/utils": "6.2.3",
51-
"graphback": "1.0.0",
51+
"graphback": "1.0.1",
5252
"graphql-compose": "7.21.1",
5353
"graphql-metadata": "0.7.6",
5454
"graphql-subscriptions": "1.1.0",

packages/graphback-keycloak-authz/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphback/keycloak-authz",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Add Keycloak auth to Graphback runtime applications",
55
"main": "dist/index.js",
66
"types": "types/index.d.ts",
@@ -43,7 +43,7 @@
4343
"typescript": "4.0.3"
4444
},
4545
"dependencies": {
46-
"@graphback/core": "1.0.0",
46+
"@graphback/core": "1.0.1",
4747
"graphql-subscriptions": "1.1.0"
4848
},
4949
"peerDependencies": {

0 commit comments

Comments
 (0)