Skip to content

Latest commit

 

History

History
75 lines (44 loc) · 1.71 KB

CHANGELOG.md

File metadata and controls

75 lines (44 loc) · 1.71 KB

CHANGELOG

2.0.1

  • Upgrade internal packages (#13)

2.0.0 (2018-04-20)

Bugfix

  • Fix broken compilation of destructuring (#9,#10,#11)

Feature

  • Improve type definitions(Upgrading redux to v4.0.0) (#12)

Breaking change feature

  • Rename CirquitAction to Operation (#8)

This change only affect to createCirquitAction method's name.

before

createCirquitAction(/* any arguments */);

after

createOperation(/* any arguments */);

1.4.0 (2018-04-05)

Features

  • Add temporal improvement of TypeScript's typings (#6)
  • Add auto generated type definitions of flow (#7)

1.3.0 (2018-04-01)

Features

  • add namespace option to targeting reducer (#3)
  • change action interface that created by createCirquitAction (#4)

Breaking change

  • createCirquitAction is now receives object formed option.

before

createCirquitAction(reducer, "my-reducer");

after

createCirquitAction(reducer, {
  reducerName: "my-reducer"
});

1.2.0 (2018-03-31)

Features

  • add optional name argument to define reducer's name explicitly (#2)

1.1.0 (2018-03-27)

First release