Skip to content

Commit

Permalink
Release v4.0.4
Browse files Browse the repository at this point in the history
Relax Redux dependency

Closes #64
  • Loading branch information
mironov committed Apr 27, 2018
1 parent 1ec0f6b commit fe2f08f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,8 @@
# Release History

## 4.0.4
- Relax Redux dependency

## 4.0.3
- Update to latest react-lifecycles-compat

Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "react-redux-loading-bar",
"version": "4.0.3",
"version": "4.0.4",
"description": "Simple Loading Bar for Redux and React",
"main": "build/index.js",
"typings": "index.d.ts",
Expand Down Expand Up @@ -37,7 +37,7 @@
"react": "^0.14.0 || ^15.0.0 || ^16.0.0",
"react-dom": "^0.14.0 || ^15.0.0 || ^16.0.0",
"react-redux": "^3.0.0 || ^4.0.0 || ^5.0.0",
"redux": "^3.0.0"
"redux": "^3.0.0 || ^4.0.0"
},
"devDependencies": {
"@types/react": "^0.14.55 || ^15.0.0",
Expand Down
8 changes: 4 additions & 4 deletions spec/loading_bar.js
Expand Up @@ -24,7 +24,7 @@ global.window = dom.window
global.document = dom.window.document

describe('LoadingBar', () => {
describe('#render', () => {
describe('render', () => {
it('renders without problems', () => {
const wrapper = shallow(<LoadingBar />)

Expand Down Expand Up @@ -90,7 +90,7 @@ describe('LoadingBar', () => {
})
})

describe('#componentWillReceiveProps', () => {
describe('update props', () => {
let spyStart
let clock

Expand Down Expand Up @@ -160,7 +160,7 @@ describe('LoadingBar', () => {
})
})

describe('#componentWillUnmount', () => {
describe('unmount', () => {
let clock
let consoleSpy

Expand Down Expand Up @@ -194,7 +194,7 @@ describe('LoadingBar', () => {
})
})

describe('#launch', () => {
describe('progress', () => {
let wrapper
let clock
let spySimulateProgress
Expand Down

0 comments on commit fe2f08f

Please sign in to comment.