Skip to content
This repository has been archived by the owner on Mar 24, 2024. It is now read-only.

Commit

Permalink
sealed_flutter_bloc v1.0.0 (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
felangel committed Oct 20, 2019
1 parent 6e4673a commit 292ce10
Show file tree
Hide file tree
Showing 14 changed files with 32 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.0.0

Update to `bloc ^1.0.0`

# 0.2.0

Update to `bloc ^0.16.0`
Expand Down
6 changes: 3 additions & 3 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packages:
name: bloc
url: "https://pub.dartlang.org"
source: hosted
version: "0.16.1"
version: "1.0.0"
collection:
dependency: transitive
description:
Expand All @@ -26,7 +26,7 @@ packages:
name: flutter_bloc
url: "https://pub.dartlang.org"
source: hosted
version: "0.22.0"
version: "1.0.0"
meta:
dependency: transitive
description:
Expand Down Expand Up @@ -54,7 +54,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.2.0"
version: "1.0.0"
sealed_unions:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: A new Flutter project.
version: 1.0.0+1

environment:
sdk: ">=2.1.0 <3.0.0"
sdk: ">=2.0.0 <3.0.0"

dependencies:
flutter:
Expand Down
4 changes: 2 additions & 2 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ packages:
name: bloc
url: "https://pub.dartlang.org"
source: hosted
version: "0.16.1"
version: "1.0.0"
boolean_selector:
dependency: transitive
description:
Expand Down Expand Up @@ -47,7 +47,7 @@ packages:
name: flutter_bloc
url: "https://pub.dartlang.org"
source: hosted
version: "0.22.0"
version: "1.0.0"
flutter_test:
dependency: "direct dev"
description: flutter
Expand Down
8 changes: 4 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
name: sealed_flutter_bloc
description: flutter_bloc state management extension that integrates sealed_unions.
version: 0.2.0
version: 1.0.0
author: Felix Angelov <felangelov@gmail.com>
repository: https://github.com/felangel/sealed_flutter_bloc
issue_tracker: https://github.com/felangel/sealed_flutter_bloc/issues
homepage: https://github.com/felangel/sealed_flutter_bloc

environment:
sdk: ">=2.1.0 <3.0.0"
sdk: ">=2.0.0 <3.0.0"

dependencies:
flutter:
sdk: flutter
bloc: ^0.16.0
flutter_bloc: ^0.22.0
bloc: ^1.0.0
flutter_bloc: ^1.0.0
sealed_unions: ^3.0.2+2

dev_dependencies:
Expand Down
2 changes: 2 additions & 0 deletions test/helpers/helper_bloc1.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import 'dart:async';

import 'package:bloc/bloc.dart';
import 'package:sealed_unions/sealed_unions.dart';

Expand Down
2 changes: 2 additions & 0 deletions test/helpers/helper_bloc2.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import 'dart:async';

import 'package:bloc/bloc.dart';
import 'package:sealed_unions/sealed_unions.dart';

Expand Down
2 changes: 2 additions & 0 deletions test/helpers/helper_bloc3.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import 'dart:async';

import 'package:bloc/bloc.dart';
import 'package:sealed_unions/sealed_unions.dart';

Expand Down
2 changes: 2 additions & 0 deletions test/helpers/helper_bloc4.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import 'dart:async';

import 'package:bloc/bloc.dart';
import 'package:sealed_unions/sealed_unions.dart';

Expand Down
2 changes: 2 additions & 0 deletions test/helpers/helper_bloc5.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import 'dart:async';

import 'package:bloc/bloc.dart';
import 'package:sealed_unions/sealed_unions.dart';

Expand Down
2 changes: 2 additions & 0 deletions test/helpers/helper_bloc6.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import 'dart:async';

import 'package:bloc/bloc.dart';
import 'package:sealed_unions/sealed_unions.dart';

Expand Down
2 changes: 2 additions & 0 deletions test/helpers/helper_bloc7.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import 'dart:async';

import 'package:bloc/bloc.dart';
import 'package:sealed_unions/sealed_unions.dart';

Expand Down
2 changes: 2 additions & 0 deletions test/helpers/helper_bloc8.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import 'dart:async';

import 'package:bloc/bloc.dart';
import 'package:sealed_unions/sealed_unions.dart';

Expand Down
2 changes: 2 additions & 0 deletions test/helpers/helper_bloc9.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import 'dart:async';

import 'package:bloc/bloc.dart';
import 'package:sealed_unions/sealed_unions.dart';

Expand Down

0 comments on commit 292ce10

Please sign in to comment.