Updated README
This commit is contained in:
parent
5e3abdad74
commit
f0c629ceb8
4 changed files with 9 additions and 12 deletions
13
README.md
13
README.md
|
@ -37,16 +37,9 @@ Branch: `master`
|
||||||
|
|
||||||
* Dart version : 2.12.x and above.
|
* Dart version : 2.12.x and above.
|
||||||
* Publish : Yes. Refer to packages with `angel3_` prefix on [pub.dev](https://pub.dev/publishers/dukefirehawk.com/packages).
|
* Publish : Yes. Refer to packages with `angel3_` prefix on [pub.dev](https://pub.dev/publishers/dukefirehawk.com/packages).
|
||||||
* NNBD Support : Yes
|
* Null Safety : Yes
|
||||||
* Status : Release
|
* Status : Production
|
||||||
* Notes : Use this for PR
|
* Notes : Use this branch for all PR submission
|
||||||
|
|
||||||
Branch: `angel3`
|
|
||||||
|
|
||||||
* Dart version : 2.12.x and above.
|
|
||||||
* NNBD Support : Yes
|
|
||||||
* Status : Development
|
|
||||||
* Notes : This branch is under active development. Features maybe broken from time to time.
|
|
||||||
|
|
||||||
For more details, checkout [Project Status](https://github.com/dukefirehawk/angel/wiki/Project-Status)
|
For more details, checkout [Project Status](https://github.com/dukefirehawk/angel/wiki/Project-Status)
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 4.2.3
|
||||||
|
|
||||||
|
* Fixed `res.json()` throwing bad state exception
|
||||||
|
|
||||||
## 4.2.2
|
## 4.2.2
|
||||||
|
|
||||||
* Added `Date` to response header
|
* Added `Date` to response header
|
||||||
|
|
|
@ -170,7 +170,7 @@ abstract class ResponseContext<RawResponse>
|
||||||
|
|
||||||
/// Serializes JSON to the response.
|
/// Serializes JSON to the response.
|
||||||
Future<bool> json(value) =>
|
Future<bool> json(value) =>
|
||||||
this.serialize(value, contentType: MediaType('application', 'json'));
|
serialize(value, contentType: MediaType('application', 'json'));
|
||||||
|
|
||||||
/// Returns a JSONP response.
|
/// Returns a JSONP response.
|
||||||
///
|
///
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
name: angel3_framework
|
name: angel3_framework
|
||||||
version: 4.2.2
|
version: 4.2.3
|
||||||
description: A high-powered HTTP server extensible framework with dependency injection, routing and much more.
|
description: A high-powered HTTP server extensible framework with dependency injection, routing and much more.
|
||||||
homepage: https://angel3-framework.web.app/
|
homepage: https://angel3-framework.web.app/
|
||||||
repository: https://github.com/dukefirehawk/angel/tree/master/packages/framework
|
repository: https://github.com/dukefirehawk/angel/tree/master/packages/framework
|
||||||
|
|
Loading…
Reference in a new issue