From f256858cc43a9c5ec02359dcf7fe3b21914f3447 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Lemes?= Date: Thu, 1 Feb 2018 16:28:47 -0200 Subject: [PATCH] set version 0.0.2 just because --- README.md | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d36b085..f0f8538 100644 --- a/README.md +++ b/README.md @@ -87,8 +87,8 @@ Bellow you can find the description of the API provided by Redux Shelf library. // userActions.js import { entities, communication } from 'redux-shelf'; -// Here I assuming that you're using some middleware to handle asynchronous actions, for example, -// Redux Thunk +// Here I assuming that you're using some middleware to handle +// asynchronous actions, for example, Redux Thunk export function fetchUsers() { return async (dispatch) => { dispatch(communication.starting('users')); diff --git a/package.json b/package.json index 0f24af5..8c5ebd6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "redux-shelf", - "version": "0.0.1", + "version": "0.0.2", "main": "index.js", "description": "Helper reducers and actions to take away your boilerplate code from both Data and Communication state types",