Skip to content

Commit

Permalink
Update version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Frezyx committed Jan 8, 2022
1 parent af5a4e9 commit d792204
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.3.0

* Make text with the possibility of selection

## 0.2.1

* Small refactoring
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

```yaml
dependencies:
flutter_json_view: ^0.2.1
flutter_json_view: ^0.3.0
```

### Add import package
Expand Down
2 changes: 1 addition & 1 deletion example/ios/Flutter/AppFrameworkInfo.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
<string>8.0</string>
<string>9.0</string>
</dict>
</plist>
4 changes: 2 additions & 2 deletions example/ios/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objectVersion = 50;
objects = {

/* Begin PBXBuildFile section */
Expand Down Expand Up @@ -127,7 +127,7 @@
97C146E61CF9000F007C117D /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 1020;
LastUpgradeCheck = 1300;
ORGANIZATIONNAME = "";
TargetAttributes = {
97C146ED1CF9000F007C117D = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1020"
LastUpgradeVersion = "1300"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
2 changes: 1 addition & 1 deletion example/lib/examples/github_user.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class JsonViewApp extends StatelessWidget {
brightness: Brightness.dark,
),
home: Scaffold(
appBar: AppBar(title: Text('flutter_json_view 0.2.1')),
appBar: AppBar(title: Text('flutter_json_view 0.3.0')),
body: Padding(
padding: const EdgeInsets.all(10),
child: JsonView.asset('assets/github_user.json'),
Expand Down
2 changes: 1 addition & 1 deletion example/lib/examples/green_custom.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class JsonViewApp extends StatelessWidget {
),
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(title: Text('flutter_json_view 0.2.1')),
appBar: AppBar(title: Text('flutter_json_view 0.3.0')),
body: Padding(
padding: const EdgeInsets.all(10),
child: JsonView.string(
Expand Down
2 changes: 1 addition & 1 deletion example/lib/examples/map_сonstructor.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class JsonViewApp extends StatelessWidget {
),
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(title: Text('flutter_json_view 0.2.1')),
appBar: AppBar(title: Text('flutter_json_view 0.3.0')),
body: Padding(
padding: const EdgeInsets.all(10),
child: JsonView.map(
Expand Down
2 changes: 1 addition & 1 deletion example/lib/examples/pink.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class JsonViewApp extends StatelessWidget {
primarySwatch: Colors.pink,
),
home: Scaffold(
appBar: AppBar(title: Text('flutter_json_view 0.2.1')),
appBar: AppBar(title: Text('flutter_json_view 0.3.0')),
body: Padding(
padding: const EdgeInsets.all(10),
child: JsonView.string(
Expand Down
2 changes: 1 addition & 1 deletion example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class JsonViewApp extends StatelessWidget {
),
debugShowCheckedModeBanner: false,
home: Scaffold(
appBar: AppBar(title: Text('flutter_json_view 0.2.1')),
appBar: AppBar(title: Text('flutter_json_view 0.3.0')),
body: Padding(
padding: const EdgeInsets.all(10),
child: JsonView.string(
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.2.1"
version: "0.3.0"
flutter_test:
dependency: "direct dev"
description: flutter
Expand Down
3 changes: 1 addition & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: flutter_json_view
description: Displaying json models in a Flutter widget with customization.
version: 0.2.1
author: 'youngfrezyx@gmail.com'
version: 0.3.0
homepage: https://github.com/Frezyx/flutter_json_view

environment:
Expand Down

0 comments on commit d792204

Please sign in to comment.