diff --git a/README-zh.md b/README-zh.md index c70d149b..5ee97c24 100644 --- a/README-zh.md +++ b/README-zh.md @@ -1,7 +1,7 @@ ![social preview](social-dark.png)

- pub + pub github doc license @@ -58,7 +58,7 @@ git clone https://github.com/wuba/fair.git ```yaml # add Fair dependency dependencies: - fair: 2.7.0 + fair: 2.8.0 # add build_runner and compiler dependency dev_dependencies: @@ -114,6 +114,14 @@ data: {"fairProps": json.encode({})}), ``` ## 🔨最近版本 + +### 2.8.0 +更新时间:2022.10.21 + +- 适配 Flutter SDK 3.3.0+; +- 新增语法糖:Sugar.isNestedScrollViewHeaderSliversBuilder、Sugar.isButtonStyle、Sugar.isDuration、Sugar.popMenuButton、Sugar.sliverChildBuilderDelegate、Sugar.sliverGridDelegateWithFixedCrossAxisCount; +- 修复了一些bug。 + ### 2.7.0 更新时间:2022.08.10 diff --git a/README.md b/README.md index 4b4f2f47..6ea709e3 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ ![social preview](social-dark.png)

- pub + pub github doc license @@ -50,12 +50,12 @@ Assuming that the fair project and your own project are in the same folder: ```yaml # add Fair dependency dependencies: - fair: 2.7.0 + fair: 2.8.0 # add build_runner and compiler dependency dev_dependencies: build_runner: ^2.0.0 - fair_compiler: ^1.2.0 + fair_compiler: ^1.3.0 # switch "fair_version" according to the local Flutter SDK version # Flutter SDK 3.0.x(3.0.0、3.0.1、3.0.2、3.0.3、3.0.4、3.0.5) -> flutter_3_0_0 @@ -111,6 +111,13 @@ If you need the hot update platform, please follow [FAIR PUSHY](https://github.c ## versions +### 2.8.0 +updateDate:2022.10.21 + +- Add support of Flutter SDK 3.3.0+. +- Add Sugar:Sugar.isNestedScrollViewHeaderSliversBuilder、Sugar.isButtonStyle、Sugar.isDuration、Sugar.popMenuButton、Sugar.sliverChildBuilderDelegate、Sugar.sliverGridDelegateWithFixedCrossAxisCount. +- Fixed some bugs. + ### 2.7.0 updateDate:2022.08.10 diff --git a/compiler/CHANGELOG.md b/compiler/CHANGELOG.md index b7d87048..e2fdc0bb 100644 --- a/compiler/CHANGELOG.md +++ b/compiler/CHANGELOG.md @@ -1,3 +1,6 @@ +## [1.3.0] +* Module split. + ## [1.2.2] * bugfix. diff --git a/compiler/README.md b/compiler/README.md index 7639c6de..a8726825 100644 --- a/compiler/README.md +++ b/compiler/README.md @@ -5,7 +5,7 @@ A complier which can generate Fair bundle for widget with annotation. ![](http://pic1.58cdn.com.cn/nowater/jltx/n_v26dd88a1afa1c4cc9b186524f96ff3f65.png)

- pub + pub github doc license @@ -48,12 +48,12 @@ Assuming that the fair project and your own project are in the same folder: ```yaml # add Fair dependency dependencies: - fair: 2.7.0 + fair: 2.8.0 # add build_runner and compiler dependency dev_dependencies: build_runner: ^2.0.0 - fair_compiler: ^1.2.2 + fair_compiler: ^1.3.0 # switch "fair_version" according to the local Flutter SDK version # Flutter SDK 3.0.x(3.0.0、3.0.1、3.0.2、3.0.3、3.0.4、3.0.5) -> flutter_3_0_0 diff --git a/compiler/pubspec.yaml b/compiler/pubspec.yaml index df908e6b..41dfcb06 100644 --- a/compiler/pubspec.yaml +++ b/compiler/pubspec.yaml @@ -1,6 +1,6 @@ name: fair_compiler description: A complier which can generate Fair bundle for widget with annotation. -version: 1.2.2 +version: 1.3.0 homepage: https://fair.58.com/ environment: @@ -26,7 +26,7 @@ dependencies: # path: ../annotation http: ^0.13.3 fair_dart2dsl: ^1.0.1 - fair_dart2js: ^1.2.0 + fair_dart2js: ^1.3.0 dev_dependencies: test: ^1.17.12 diff --git a/dart2js/CHANGELOG.md b/dart2js/CHANGELOG.md index 9a570952..a11606c4 100644 --- a/dart2js/CHANGELOG.md +++ b/dart2js/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.3.0 + +- 模块拆分 + ## 1.2.0 - 支持static方法解析 diff --git a/dart2js/pubspec.yaml b/dart2js/pubspec.yaml index 53ba8e27..6e0a6ba3 100644 --- a/dart2js/pubspec.yaml +++ b/dart2js/pubspec.yaml @@ -1,6 +1,6 @@ name: fair_dart2js description: Convert individual dart file to js. -version: 1.2.0 +version: 1.3.0 homepage: https://fair.58.com/ environment: diff --git a/fair/CHANGELOG.md b/fair/CHANGELOG.md index 19d81d1d..62ce8eb0 100644 --- a/fair/CHANGELOG.md +++ b/fair/CHANGELOG.md @@ -1,3 +1,8 @@ +## [2.8.0] +* Add support of Flutter SDK 3.3.0+. +* Add Sugar:Sugar.isNestedScrollViewHeaderSliversBuilder、Sugar.isButtonStyle、Sugar.isDuration、Sugar.popMenuButton、Sugar.sliverChildBuilderDelegate、Sugar.sliverGridDelegateWithFixedCrossAxisCount. +* Fixed some bugs. + ## [2.7.0] * Add support of Flutter SDK 3.0.0、3.0.1、3.0.2、3.0.3、3.0.4、3.0.5. * Fixed some bugs. diff --git a/fair/README.md b/fair/README.md index c6f8d742..b55f7a23 100644 --- a/fair/README.md +++ b/fair/README.md @@ -2,7 +2,7 @@

- pub + pub github doc license @@ -19,7 +19,7 @@ We create Fair so we can dispatch UI changes to users as bundle(s), the way simi Use Flutter Fair require few steps. Add dependency inside `pubspec.yaml`. ```yaml dependencies: - fair: ^2.7.0 + fair: ^2.8.0 ``` Wrap your app with FairApp Widget. diff --git a/fair/pubspec.yaml b/fair/pubspec.yaml index 78979fe9..d70e7c4d 100644 --- a/fair/pubspec.yaml +++ b/fair/pubspec.yaml @@ -1,6 +1,6 @@ name: fair description: Flutter Fair is a package used to update widget dynamically. -version: 2.7.0 +version: 2.8.0 homepage: https://fair.58.com/ environment: