Skip to content

Commit 4efe957

Browse files
authored
Merge pull request #367 from wanbing/dev_wanbing
3.4.0 publish
2 parents 4aac629 + a249f8c commit 4efe957

File tree

23 files changed

+222
-228
lines changed

23 files changed

+222
-228
lines changed

compiler/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [1.9.0]
2+
* Support TypeArgumentList.
3+
* Support negative value.
4+
* Fix js isNotEmpty bug.
5+
16
## [1.8.0]
27
* Compiler log optimized.
38

compiler/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: fair_compiler
22
description: A complier which can generate Fair bundle for widget with annotation.
3-
version: 1.8.0
3+
version: 1.9.0
44
homepage: https://fair.58.com/
55

66
environment:
@@ -28,11 +28,11 @@ dependencies:
2828
# fair_annotation:
2929
# path: ../annotation
3030

31-
fair_dart2dsl: ^1.4.0
31+
fair_dart2dsl: ^1.5.0
3232
# fair_dart2dsl:
3333
# path: ../dart2dsl
3434

35-
fair_dart2js: ^1.4.0
35+
fair_dart2js: ^1.5.0
3636
# fair_dart2js:
3737
# path: ../dart2js
3838

dart2dsl/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.5.0
2+
3+
- Support TypeArgumentList.
4+
- Support Negative Value.
5+
16
## 1.4.0
27

38
- Log optimized.

dart2dsl/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: fair_dart2dsl
22
description: Companion compiler for fair_compiler for converting Dart to DSL.
3-
version: 1.4.0
3+
version: 1.5.0
44
homepage: https://fair.58.com/
55

66
environment:

dart2js/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.5.0
2+
- fix js isNotEmpty bug.
3+
14
## 1.4.0
25

36
- 升级 analyzer 版本为 5.5.0;

dart2js/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: fair_dart2js
22
description: Convert individual dart file to js.
3-
version: 1.4.0
3+
version: 1.5.0
44
homepage: https://fair.58.com/
55

66
environment:

fair/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [3.4.0]
2+
* Publish Fair Provider;
3+
* Adaptation to Flutter 3.13;
4+
* Fixed some known issues.
5+
16
## [3.3.0]
27
* Runtime log optimization, covering Dart/JS logs;
38
* Compiler log optimization, removal of redundant/error logs, and enhanced log output;

fair/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<img src="https://fair.58.com/logo.png">
33
</p>
44
<p align="center">
5-
<a href="https://pub.dev/packages/fair"><img src="https://img.shields.io/badge/pub-3.3.0-orange" alt="pub"></a>
5+
<a href="https://pub.dev/packages/fair"><img src="https://img.shields.io/badge/pub-3.4.0-orange" alt="pub"></a>
66
<a href="https://github.com/wuba/fair"><img src="https://img.shields.io/badge/platform-flutter-blue.svg" alt="github"></a>
77
<a href="https://fair.58.com/"><img src="https://img.shields.io/badge/doc-fair.58.com-green.svg" alt="doc"></a>
88
<a href="https://github.com/wuba/fair/LICENSE"><img src="https://img.shields.io/badge/license-BSD-green.svg" alt="license"></a>
@@ -19,7 +19,7 @@ We create Fair so we can dispatch UI changes to users as bundle(s), the way simi
1919
Use Flutter Fair require few steps. Add dependency inside `pubspec.yaml`.
2020
```yaml
2121
dependencies:
22-
fair: ^3.3.0
22+
fair: ^3.4.0
2323
```
2424
2525
Wrap your app with FairApp Widget.

fair/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: fair
22
description: Flutter Fair is a package used to update widget dynamically.
3-
version: 3.3.0
3+
version: 3.4.0
44
homepage: https://fair.58.com/
55

66
environment:
@@ -16,7 +16,7 @@ dependencies:
1616
# fair_annotation:
1717
# path: ../annotation
1818

19-
fair_version: ^3.0.0
19+
fair_version: ^3.13.0
2020
# fair_version:
2121
# path: ../flutter_version/flutter_2_5_0
2222
flat_buffers: ^2.0.5

fair_provider/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
## [0.0.1+1]
2+
* Support Provider.

0 commit comments

Comments
 (0)