From 5e658703fa1340ef2965d8a5c824d04f5a7faf8e Mon Sep 17 00:00:00 2001 From: "thomashii@dukefirehawk.com" Date: Mon, 3 Oct 2022 23:31:46 +0800 Subject: [PATCH] Updated README --- README.md | 13 ++++++------- packages/framework/CHANGELOG.md | 4 ++++ packages/framework/README.md | 6 ++++++ packages/framework/pubspec.yaml | 2 +- 4 files changed, 17 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 606b02d2..36456a29 100644 --- a/README.md +++ b/README.md @@ -70,10 +70,10 @@ For more details, checkout [Project Status](https://github.com/dukefirehawk/ange 1. Download and install [Dart](https://dart.dev/get-dart) 2. Clone one of the following starter projects: - * [Basic Template](https://github.com/dukefirehawk/boilerplates/tree/angel3-basic) - * [ORM for PostgreSQL Template](https://github.com/dukefirehawk/boilerplates/tree/angel3-orm) - * [ORM for MySQL Template](https://github.com/dukefirehawk/boilerplates/tree/angel3-orm-mysql) - * [Angel3 Graphql Template](https://github.com/dukefirehawk/boilerplates/tree/angel3-graphql) + * [Angel3 Basic Template](https://github.com/dukefirehawk/boilerplates/tree/v7/angel3-basic) + * [Angel3 ORM Template](https://github.com/dukefirehawk/boilerplates/tree/v7/angel3-orm) + * [Angel3 ORM MySQL Template](https://github.com/dukefirehawk/boilerplates/tree/v7/angel3-orm-mysql) + * [Angel3 Graphql Template](https://github.com/dukefirehawk/boilerplates/tree/v7/angel3-graphql) 3. Run the project in development mode (*hot-reloaded* is enabled on file changes). @@ -135,9 +135,8 @@ The performance benchmark can be found at The test cases are build using standard `Angel3 ORM` template. The result are used for fine-tuning Angel3 framework. The following test cases will be added in the upcoming update to the benchmark. -1. Angel3 with ORM for MySQL -2. Cached queries -3. Angel3 with MongoDB +1. Cached queries +2. Angel3 with MongoDB ## Examples and Documentation diff --git a/packages/framework/CHANGELOG.md b/packages/framework/CHANGELOG.md index ba6d202d..5f6f56ce 100644 --- a/packages/framework/CHANGELOG.md +++ b/packages/framework/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## 7.0.2 + +* Added performance benchmark to README + ## 7.0.1 * Fixed `BytesBuilder` warnings diff --git a/packages/framework/README.md b/packages/framework/README.md index 14d9593c..f9ad2475 100644 --- a/packages/framework/README.md +++ b/packages/framework/README.md @@ -68,6 +68,12 @@ This package is the core package of [Angel3](https://github.com/dukefirehawk/ang 6. Run as docker. Edit and build the image with the provided `Dockerfile` file. +## Performance Benchmark + +The performance benchmark can be found at + +[TechEmpower Framework Benchmarks Round 21](https://www.techempower.com/benchmarks/#section=data-r21&test=composite) + ### Migrating from Angel to Angel3 Check out [Migrating to Angel3](https://angel3-docs.dukefirehawk.com/migration/angel-2.x.x-to-angel3/migration-guide-3) diff --git a/packages/framework/pubspec.yaml b/packages/framework/pubspec.yaml index 9b31bb6c..d00acf9d 100644 --- a/packages/framework/pubspec.yaml +++ b/packages/framework/pubspec.yaml @@ -1,5 +1,5 @@ name: angel3_framework -version: 7.0.1 +version: 7.0.2 description: A high-powered HTTP server extensible framework with dependency injection, routing and much more. homepage: https://angel3-framework.web.app/ repository: https://github.com/dukefirehawk/angel/tree/master/packages/framework