diff --git a/CHANGELOG.md b/CHANGELOG.md index de12fe6..60d33f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [2.0.0](https://github.com/cahilfoley/react-snowfall/compare/v1.2.1...v2.0.0) (2024-01-25) + + +### ⚠ BREAKING CHANGES + +* **Snowfall:** Lots of internals have moved around - if you are only using the `` component then you shouldn't have to make any changes. If you were importing any of the library internals such as the custom hooks or some utilities then these have been reorganized and are now not exported from the root of the package - you will need to import them from the specific files. + +### Features + +* **Snowfall:** Abstract the snowflake rendering logic into the SnowfallCanvas class that is independent of React. ([7cccc63](https://github.com/cahilfoley/react-snowfall/commit/7cccc6358ea409a36485fcd73621ac16204311d7)) + ### [1.2.1](https://github.com/cahilfoley/react-snowfall/compare/v1.2.0...v1.2.1) (2022-08-25) ## [1.2.0](https://github.com/cahilfoley/react-snowfall/compare/v1.1.2...v1.2.0) (2022-08-25) diff --git a/packages/react-snowfall/package.json b/packages/react-snowfall/package.json index bf7ab42..7279d1d 100644 --- a/packages/react-snowfall/package.json +++ b/packages/react-snowfall/package.json @@ -1,6 +1,6 @@ { "name": "react-snowfall", - "version": "1.2.1", + "version": "2.0.0", "description": "A react component that creates a snowfall effect", "main": "./lib/index.js", "types": "./lib/index.d.ts",