Skip to content

Commit bd09820

Browse files
committed
Publish version 1.1.2
1 parent afb6969 commit bd09820

8 files changed

Lines changed: 11 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.1.2
2+
- Update sdk version to **'>=2.15.0 <4.0.0'**
3+
14
## 1.1.1
25
- Add topics in pubspec.yaml
36

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
```yaml
3535
dependencies:
36-
flutter_json_view: ^1.1.1
36+
flutter_json_view: ^1.1.2
3737
```
3838
3939
### Add import package

example/lib/examples/github_user.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class JsonViewApp extends StatelessWidget {
1515
brightness: Brightness.dark,
1616
),
1717
home: Scaffold(
18-
appBar: AppBar(title: Text('flutter_json_view 0.4.0')),
18+
appBar: AppBar(title: Text('flutter_json_view 1.1.2')),
1919
body: Padding(
2020
padding: const EdgeInsets.all(10),
2121
child: JsonView.asset('assets/github_user.json'),

example/lib/examples/green_custom.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class JsonViewApp extends StatelessWidget {
1616
),
1717
debugShowCheckedModeBanner: false,
1818
home: Scaffold(
19-
appBar: AppBar(title: Text('flutter_json_view 0.4.0')),
19+
appBar: AppBar(title: Text('flutter_json_view 1.1.2')),
2020
body: Padding(
2121
padding: const EdgeInsets.all(10),
2222
child: JsonView.string(
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class JsonViewApp extends StatelessWidget {
1515
),
1616
debugShowCheckedModeBanner: false,
1717
home: Scaffold(
18-
appBar: AppBar(title: Text('flutter_json_view 0.4.0')),
18+
appBar: AppBar(title: Text('flutter_json_view 1.1.2')),
1919
body: Padding(
2020
padding: const EdgeInsets.all(10),
2121
child: JsonView.map(

example/lib/examples/pink.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class JsonViewApp extends StatelessWidget {
1414
primarySwatch: Colors.pink,
1515
),
1616
home: Scaffold(
17-
appBar: AppBar(title: Text('flutter_json_view 0.4.0')),
17+
appBar: AppBar(title: Text('flutter_json_view 1.1.2')),
1818
body: Padding(
1919
padding: const EdgeInsets.all(10),
2020
child: JsonView.string(

example/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class _HomeScreenState extends State<_HomeScreen> {
3333
Widget build(BuildContext context) {
3434
final theme = Theme.of(context);
3535
return Scaffold(
36-
appBar: AppBar(title: Text('flutter_json_view 1.1.0')),
36+
appBar: AppBar(title: Text('flutter_json_view 1.1.2')),
3737
body: Padding(
3838
padding: const EdgeInsets.all(10),
3939
child: SingleChildScrollView(

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_json_view
22
description: Displaying json models in a Flutter widget with customization.
3-
version: 1.1.0
3+
version: 1.1.2
44
homepage: https://github.com/Frezyx/flutter_json_view
55

66
topics:
@@ -11,7 +11,7 @@ topics:
1111
- inspector
1212

1313
environment:
14-
sdk: ">=2.12.0 <3.0.0"
14+
sdk: ">=2.12.0 <4.0.0"
1515
flutter: ">=1.17.0"
1616

1717
dependencies:

0 commit comments

Comments
 (0)