diff --git a/changelog.md b/changelog.md index d35c592..1158f64 100644 --- a/changelog.md +++ b/changelog.md @@ -2,7 +2,15 @@ ## Unreleased -- Add default value for factories overrides in the schema plugin +## 1.0.0 - 2022-05-07 + +### Added + +- Add a plugin that generates factories for operations + +### Changed + +- Add default value for factories overrides ## 1.0.0-beta.4 - 2022-04-24 diff --git a/examples/basic/package.json b/examples/basic/package.json index ff3cf23..1a62148 100644 --- a/examples/basic/package.json +++ b/examples/basic/package.json @@ -14,7 +14,7 @@ "@graphql-codegen/typescript-operations": "^2.3.7", "@tsconfig/recommended": "^1.0.1", "graphql": "^16.3.0", - "graphql-codegen-factories": "1.0.0-beta.4", + "graphql-codegen-factories": "1.0.0", "typescript": "^4.6.3" } } diff --git a/examples/minimal/package.json b/examples/minimal/package.json index 88b0b8b..84f9e61 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -14,7 +14,7 @@ "@graphql-codegen/typescript-operations": "^2.3.7", "@tsconfig/recommended": "^1.0.1", "graphql": "^16.3.0", - "graphql-codegen-factories": "1.0.0-beta.4", + "graphql-codegen-factories": "1.0.0", "typescript": "^4.6.3" } } diff --git a/examples/usage-with-faker/package.json b/examples/usage-with-faker/package.json index 5a35dae..c57e69a 100644 --- a/examples/usage-with-faker/package.json +++ b/examples/usage-with-faker/package.json @@ -15,7 +15,7 @@ "@graphql-codegen/typescript": "^2.4.8", "@tsconfig/recommended": "^1.0.1", "graphql": "^16.3.0", - "graphql-codegen-factories": "1.0.0-beta.4", + "graphql-codegen-factories": "1.0.0", "typescript": "^4.6.3" } } diff --git a/examples/usage-with-near-operation-file-preset/package.json b/examples/usage-with-near-operation-file-preset/package.json index e0530a3..3cd71fa 100644 --- a/examples/usage-with-near-operation-file-preset/package.json +++ b/examples/usage-with-near-operation-file-preset/package.json @@ -15,7 +15,7 @@ "@graphql-codegen/typescript-operations": "^2.3.5", "@tsconfig/recommended": "^1.0.1", "graphql": "^16.3.0", - "graphql-codegen-factories": "1.0.0-beta.4", + "graphql-codegen-factories": "1.0.0", "typescript": "^4.6.3" } } diff --git a/packages/graphql-codegen-factories/package.json b/packages/graphql-codegen-factories/package.json index 6c7b2e4..5ba4d16 100644 --- a/packages/graphql-codegen-factories/package.json +++ b/packages/graphql-codegen-factories/package.json @@ -1,6 +1,6 @@ { "name": "graphql-codegen-factories", - "version": "1.0.0-beta.4", + "version": "1.0.0", "description": "graphql-codegen plugin to generate factories", "keywords": [ "graphql",