diff --git a/CHANGELOG.md b/CHANGELOG.md index e42709040..d989da3d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0](https://github.com/skyra-project/discord-components/compare/v2.5.0...v2.6.0) (2021-08-05) + +### Bug Fixes + +- specify string union type for DiscordMention#type prop ([3b8204e](https://github.com/skyra-project/discord-components/commit/3b8204e11bdbe41b17bd2963f6afa11d6e903511)) + +### Features + +- add replies (+ style changes) ([#103](https://github.com/skyra-project/discord-components/issues/103)) ([065e452](https://github.com/skyra-project/discord-components/commit/065e452f9d0386dfd1b426793aca4c7f07c9c0ae)) + # [2.5.0](https://github.com/skyra-project/discord-components/compare/v2.4.0...v2.5.0) (2021-08-04) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 5d6f308a4..63395c890 100644 --- a/lerna.json +++ b/lerna.json @@ -3,7 +3,7 @@ "packages": ["packages/*"], "npmClient": "yarn", "useWorkspaces": true, - "version": "2.5.0", + "version": "2.6.0", "command": { "publish": { "conventionalCommits": true, diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 4100e8ee2..57b982b0b 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.6.0](https://github.com/skyra-project/discord-components/compare/v2.5.0...v2.6.0) (2021-08-05) + +### Bug Fixes + +- specify string union type for DiscordMention#type prop ([3b8204e](https://github.com/skyra-project/discord-components/commit/3b8204e11bdbe41b17bd2963f6afa11d6e903511)) + +### Features + +- add replies (+ style changes) ([#103](https://github.com/skyra-project/discord-components/issues/103)) ([065e452](https://github.com/skyra-project/discord-components/commit/065e452f9d0386dfd1b426793aca4c7f07c9c0ae)) + # [2.5.0](https://github.com/skyra-project/discord-components/compare/v2.4.0...v2.5.0) (2021-08-04) ### Features diff --git a/packages/core/package.json b/packages/core/package.json index b1735103f..c2f6eafa9 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@skyra/discord-components-core", - "version": "2.5.0", + "version": "2.6.0", "description": "Web components to easily build and display fake Discord messages on your webpages.", "author": "@skyra", "license": "MIT", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 5dff20273..b8ab3d462 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/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.6.0](https://github.com/skyra-project/discord-components/compare/v2.5.0...v2.6.0) (2021-08-05) + +### Features + +- add replies (+ style changes) ([#103](https://github.com/skyra-project/discord-components/issues/103)) ([065e452](https://github.com/skyra-project/discord-components/commit/065e452f9d0386dfd1b426793aca4c7f07c9c0ae)) + # [2.5.0](https://github.com/skyra-project/discord-components/compare/v2.4.0...v2.5.0) (2021-08-04) **Note:** Version bump only for package @skyra/discord-components-react diff --git a/packages/react/package.json b/packages/react/package.json index 7c9808973..0c0ad6d56 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@skyra/discord-components-react", - "version": "2.5.0", + "version": "2.6.0", "description": "React bindings for @skyra/discord-components-core", "author": "@skyra", "license": "MIT", @@ -25,7 +25,7 @@ "build:3": "rollup -c" }, "dependencies": { - "@skyra/discord-components-core": "^2.5.0" + "@skyra/discord-components-core": "^2.6.0" }, "peerDependencies": { "react": "16.8.x || 17.x",