diff --git a/CHANGELOG.md b/CHANGELOG.md index f8ef57c..7ce5000 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## 3.0.4 (December 24th, 2024) + +- FIX [772](https://github.com/MatthewHerbst/react-to-print/pull/772) Ensure that `video` elements with an empty `src` attribute do not prevent printing from continuing. Thanks [@Can-Chen](https://github.com/Can-Chen) + ## 3.0.3 (December 22th, 2024) - FIX [764](https://github.com/MatthewHerbst/react-to-print/pull/764) Ensure `onAfterPrint` is called, and print iframe is removed, after the print preview dialog has closed. Previously these would happen when the `afterprint` event was received which, as noted in the README, may occur immediately in some browsers, rather than when the print preview dialog closes. Thanks [sensasi-delight](https://github.com/sensasi-delight) diff --git a/package-lock.json b/package-lock.json index 0df32ca..eb30ed0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "react-to-print", - "version": "3.0.3", + "version": "3.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "react-to-print", - "version": "3.0.3", + "version": "3.0.4", "license": "MIT", "devDependencies": { "@eslint/js": "^9.17.0", diff --git a/package.json b/package.json index 0adf77c..03bab56 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "react-to-print", - "version": "3.0.3", + "version": "3.0.4", "description": "Print React components in the browser", "main": "lib/index.js", "types": "lib/index.d.ts",