diff --git a/CHANGELOG.md b/CHANGELOG.md index 384e6d0c14e..a183e69a76b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -47,3 +47,11 @@ Updated `mapEventToState` to take current state as an argument. - `Stream mapEventToState(E event)` -> `Stream mapEventToState(S state, E event)` - Updates to Documentation. - Updates to Example. + +# 0.4.0 + +Added `BlocProvider`. + +- `BlocProvider.of(context)` +- Updates to Documentation. +- Updates to Example. diff --git a/README.md b/README.md index 50d0d33b8f9..17046b469a4 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ [![Build Status](https://travis-ci.org/felangel/bloc.svg?branch=master)](https://travis-ci.org/felangel/bloc) [![codecov](https://codecov.io/gh/felangel/Bloc/branch/master/graph/badge.svg)](https://codecov.io/gh/felangel/bloc) [![Pub](https://img.shields.io/pub/v/bloc.svg)](https://pub.dartlang.org/packages/bloc) +[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) --- diff --git a/pubspec.yaml b/pubspec.yaml index 5476cce72c4..0d21517f7ee 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: bloc description: The goal of this package is to make it easy to implement the BLoC Design Pattern (Business Logic Component). -version: 0.3.0 +version: 0.4.0 author: felix.angelov homepage: https://github.com/felangel/bloc