diff --git a/CHANGELOG.md b/CHANGELOG.md index fcdcff162..d4991d0b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.2](https://github.com/markmcdowell/react-financial-charts/compare/v1.3.1...v1.3.2) (2021-10-17) + + +### Bug Fixes + +* **series:** fixing bug in CandlestickSeries ([b7201f8](https://github.com/markmcdowell/react-financial-charts/commit/b7201f882b36671400bae6ab79d6ef3ef65b9b69)), closes [#594](https://github.com/markmcdowell/react-financial-charts/issues/594) +* do not round offset anymore ([2dc53ee](https://github.com/markmcdowell/react-financial-charts/commit/2dc53ee59056a617dd9c95b114c36ed7f0d89ab1)) +* remove rounding of x-axis location ([5cf2c13](https://github.com/markmcdowell/react-financial-charts/commit/5cf2c1389c5d7364d6241f3c83b0a37ba445cf5f)) +* remove rounding of x-axis location ([64e893f](https://github.com/markmcdowell/react-financial-charts/commit/64e893fb3a2d1c2b3f430b90572784f5c8fe02fa)) +* stop rounding offset ([7944b2d](https://github.com/markmcdowell/react-financial-charts/commit/7944b2d4dd66ccfda459011f33ba08c01db1b561)) + + + + + ## [1.3.1](https://github.com/markmcdowell/react-financial-charts/compare/v1.3.0...v1.3.1) (2021-06-16) diff --git a/lerna.json b/lerna.json index 277aed6e4..192c1ef56 100644 --- a/lerna.json +++ b/lerna.json @@ -2,7 +2,7 @@ "packages": [ "packages/*" ], - "version": "1.3.1", + "version": "1.3.2", "npmClient": "npm", "useWorkspaces": true, "command": { diff --git a/packages/charts/CHANGELOG.md b/packages/charts/CHANGELOG.md index 22d847e67..a384bbd76 100644 --- a/packages/charts/CHANGELOG.md +++ b/packages/charts/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.2](https://github.com/reactivemarkets/react-financial-charts/compare/v1.3.1...v1.3.2) (2021-10-17) + +**Note:** Version bump only for package react-financial-charts + + + + + ## [1.3.1](https://github.com/reactivemarkets/react-financial-charts/compare/v1.3.0...v1.3.1) (2021-06-16) **Note:** Version bump only for package react-financial-charts diff --git a/packages/charts/package.json b/packages/charts/package.json index 241ed6a82..dbd0f87a6 100644 --- a/packages/charts/package.json +++ b/packages/charts/package.json @@ -1,6 +1,6 @@ { "name": "react-financial-charts", - "version": "1.3.1", + "version": "1.3.2", "description": "React charts specific to finance.", "type": "module", "main": "./lib/index.js", diff --git a/packages/series/CHANGELOG.md b/packages/series/CHANGELOG.md index 0cfd8ab12..e44b26c12 100644 --- a/packages/series/CHANGELOG.md +++ b/packages/series/CHANGELOG.md @@ -3,6 +3,21 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.2](https://github.com/reactivemarkets/react-financial-charts/compare/v1.3.1...v1.3.2) (2021-10-17) + + +### Bug Fixes + +* **series:** fixing bug in CandlestickSeries ([b7201f8](https://github.com/reactivemarkets/react-financial-charts/commit/b7201f882b36671400bae6ab79d6ef3ef65b9b69)), closes [#594](https://github.com/reactivemarkets/react-financial-charts/issues/594) +* do not round offset anymore ([2dc53ee](https://github.com/reactivemarkets/react-financial-charts/commit/2dc53ee59056a617dd9c95b114c36ed7f0d89ab1)) +* remove rounding of x-axis location ([5cf2c13](https://github.com/reactivemarkets/react-financial-charts/commit/5cf2c1389c5d7364d6241f3c83b0a37ba445cf5f)) +* remove rounding of x-axis location ([64e893f](https://github.com/reactivemarkets/react-financial-charts/commit/64e893fb3a2d1c2b3f430b90572784f5c8fe02fa)) +* stop rounding offset ([7944b2d](https://github.com/reactivemarkets/react-financial-charts/commit/7944b2d4dd66ccfda459011f33ba08c01db1b561)) + + + + + ## [1.3.1](https://github.com/reactivemarkets/react-financial-charts/compare/v1.3.0...v1.3.1) (2021-06-16) **Note:** Version bump only for package @react-financial-charts/series diff --git a/packages/series/package.json b/packages/series/package.json index 0a3a32f58..a1eb793cf 100644 --- a/packages/series/package.json +++ b/packages/series/package.json @@ -1,6 +1,6 @@ { "name": "@react-financial-charts/series", - "version": "1.3.1", + "version": "1.3.2", "description": "Series for react-financial-charts", "publishConfig": { "access": "public" diff --git a/packages/stories/CHANGELOG.md b/packages/stories/CHANGELOG.md index 797d63be0..0c84aa1c6 100644 --- a/packages/stories/CHANGELOG.md +++ b/packages/stories/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.2](https://github.com/markmcdowell/react-financial-charts/compare/v1.3.1...v1.3.2) (2021-10-17) + +**Note:** Version bump only for package @react-financial-charts/stories + + + + + ## [1.3.1](https://github.com/markmcdowell/react-financial-charts/compare/v1.3.0...v1.3.1) (2021-06-16) **Note:** Version bump only for package @react-financial-charts/stories diff --git a/packages/stories/package.json b/packages/stories/package.json index 49df7cf03..44ce2f692 100644 --- a/packages/stories/package.json +++ b/packages/stories/package.json @@ -1,6 +1,6 @@ { "name": "@react-financial-charts/stories", - "version": "1.3.1", + "version": "1.3.2", "description": "Stories for react financial charts", "private": true, "author": "Reactive Markets",