diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a547aaf8..4a364856a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.30.1](https://github.com/vivliostyle/vivliostyle.js/compare/v2.30.0...v2.30.1) (2024-06-14) + +### Bug Fixes + +- InvalidNodeTypeError may happen during table pagination (Regression in v2.30.0) ([9c1db41](https://github.com/vivliostyle/vivliostyle.js/commit/9c1db4118be43b8c0b6b26bce26e1482049dea8b)), closes [#1345](https://github.com/vivliostyle/vivliostyle.js/issues/1345) + # [2.30.0](https://github.com/vivliostyle/vivliostyle.js/compare/v2.29.0...v2.30.0) (2024-06-04) ### Bug Fixes diff --git a/lerna.json b/lerna.json index ce321e043..50406e3ac 100644 --- a/lerna.json +++ b/lerna.json @@ -4,6 +4,6 @@ ], "npmClient": "yarn", "useWorkspaces": true, - "version": "2.30.0", + "version": "2.30.1", "includeMergedTags": true } diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 5c0d2126c..82b4e57aa 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.30.1](https://github.com/vivliostyle/vivliostyle.js/compare/v2.30.0...v2.30.1) (2024-06-14) + +### Bug Fixes + +- InvalidNodeTypeError may happen during table pagination (Regression in v2.30.0) ([9c1db41](https://github.com/vivliostyle/vivliostyle.js/commit/9c1db4118be43b8c0b6b26bce26e1482049dea8b)), closes [#1345](https://github.com/vivliostyle/vivliostyle.js/issues/1345) + # [2.30.0](https://github.com/vivliostyle/vivliostyle.js/compare/v2.29.0...v2.30.0) (2024-06-04) ### Bug Fixes diff --git a/packages/core/package.json b/packages/core/package.json index 9d5c3bea7..12be073df 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@vivliostyle/core", "description": "Vivliostyle Core library for HTML+CSS typesetting with EPUB/Web publications support", - "version": "2.30.0", + "version": "2.30.1", "author": "Vivliostyle Foundation", "scripts": { "build": "microbundle --format cjs --define VIVLIOSTYLE_DEBUG=false", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 1cd61c8ff..afc76bb00 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.30.1](https://github.com/vivliostyle/vivliostyle.js/compare/v2.30.0...v2.30.1) (2024-06-14) + +**Note:** Version bump only for package @vivliostyle/react + # [2.30.0](https://github.com/vivliostyle/vivliostyle.js/compare/v2.29.0...v2.30.0) (2024-06-04) **Note:** Version bump only for package @vivliostyle/react diff --git a/packages/react/package.json b/packages/react/package.json index 2b1d6220d..6ddedcf64 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,7 +1,7 @@ { "name": "@vivliostyle/react", "description": "React component for Vivliostyle", - "version": "2.30.0", + "version": "2.30.1", "author": "Yasuaki Uechi ", "scripts": { "build": "microbundle-crl --format modern,cjs && shx rm -rf dist/stories", @@ -18,7 +18,7 @@ "dependencies": { "@emotion/core": "^10.0.28", "@emotion/styled": "^10.0.27", - "@vivliostyle/core": "^2.30.0" + "@vivliostyle/core": "^2.30.1" }, "peerDependencies": { "react": "^18.2.0", diff --git a/packages/viewer/CHANGELOG.md b/packages/viewer/CHANGELOG.md index d792bcb89..b711940f3 100644 --- a/packages/viewer/CHANGELOG.md +++ b/packages/viewer/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [2.30.1](https://github.com/vivliostyle/vivliostyle.js/compare/v2.30.0...v2.30.1) (2024-06-14) + +**Note:** Version bump only for package @vivliostyle/viewer + # [2.30.0](https://github.com/vivliostyle/vivliostyle.js/compare/v2.29.0...v2.30.0) (2024-06-04) ### Bug Fixes diff --git a/packages/viewer/package.json b/packages/viewer/package.json index 2e98cee2e..b609acfe7 100644 --- a/packages/viewer/package.json +++ b/packages/viewer/package.json @@ -1,7 +1,7 @@ { "name": "@vivliostyle/viewer", "description": "Vivliostyle Viewer - HTML+CSS typesetting and rich paged viewing with EPUB/Web publications support", - "version": "2.30.0", + "version": "2.30.1", "author": "Vivliostyle Foundation", "scripts": { "build": "gulp build && cross-env NODE_ENV=production rollup -c", @@ -19,7 +19,7 @@ "test-sauce": "echo 'Tests for Vivliostyle Viewer has been disabled. See #618.'" }, "dependencies": { - "@vivliostyle/core": "^2.30.0", + "@vivliostyle/core": "^2.30.1", "i18next-ko": "^3.0.1", "knockout": "^3.5.0" },