From 810e27590900afa8f25e132704bc322456630ca8 Mon Sep 17 00:00:00 2001 From: Igor Borges Date: Fri, 6 Oct 2023 10:56:59 -0300 Subject: [PATCH] Add discontinuation notice --- CHANGELOG.md | 4 ++++ README.md | 19 ++++++++++++++++++- pubspec.yaml | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fa836af..0d7a368e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## 7.13.0-beta.3 + +- Add discontinuation notice + ## 7.13.0-beta.2 - readme fix diff --git a/README.md b/README.md index 125589e0..08cbe774 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,22 @@

Artemis

-**Build dart types from GraphQL schemas and queries** + + +## Notice + +Artemis has been [discontinued](https://github.com/gql-dart/ferry/issues/541). + +For alternatives, take a look at the [Ferry](https://pub.dev/packages/ferry) project, featuring code generation for data types, customizable network layer (using `gql_link`), cache, data store connections, refetching + pagination support and more. + +Also check out [graphql](https://pub.dev/packages/graphql), with features closely matching the current Artemis state: fully-featured client (for Dart and Flutter) with persistence, type generation (with [graphql_codegen](https://pub.dev/packages/graphql_codegen)), cache, and more. + +Users and community are also invited to join the [GraphQL Dart](https://discord.gg/Pu8AMajSd) Discord to discuss migration approaches and ask for support. + +Thanks to all contributors and users that made this project possible. + +
+ To check out the old README, click here. [![View at pub.dev][pub-badge]][pub-link] @@ -209,3 +224,5 @@ final response = await client.execute(gitHubReposQuery); You can create `ArtemisClient` from any `Link` using `ArtemisClient.fromLink`. Check the [examples](./example) to see how to use it in details. + +
diff --git a/pubspec.yaml b/pubspec.yaml index fc21c4ad..cbdcb31f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: artemis -version: 7.13.0-beta.2 +version: 7.13.0-beta.3 description: Build dart types from GraphQL schemas and queries (using Introspection Query). homepage: https://github.com/comigor/artemis