diff --git a/packages/builders/CHANGELOG.md b/packages/builders/CHANGELOG.md index b4396b113..1871b9ec3 100644 --- a/packages/builders/CHANGELOG.md +++ b/packages/builders/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. -# [0.13.0](https://github.com/discordjs/discord.js/compare/@discordjs/builders@0.12.0...@discordjs/builders@0.13.0) (2022-04-17) +# [@discordjs/builders@0.13.0](https://github.com/discordjs/discord.js/compare/@discordjs/builders@0.12.0...@discordjs/builders@0.13.0) - (2022-04-17) ## Bug Fixes @@ -19,6 +19,7 @@ All notable changes to this project will be documented in this file. ## Documentation - Completely fix builders example link (#7543) ([1a14c0c](https://github.com/discordjs/discord.js/commit/1a14c0ca562ea173d363a770a0437209f461fd23)) +- Add slash command builders example, fixes #7338 (#7339) ([3ae6f3c](https://github.com/discordjs/discord.js/commit/3ae6f3c313091151245d6e6b52337b459ecfc765)) ## Features @@ -52,7 +53,7 @@ All notable changes to this project will be documented in this file. - Fix regressions (#7649) ([5748dbe](https://github.com/discordjs/discord.js/commit/5748dbe08783beb80c526de38ccd105eb0e82664)) -# [0.12.0](https://github.com/discordjs/discord.js/compare/@discordjs/builders@0.11.0...@discordjs/builders@0.12.0) (2021-12-08) +# [@discordjs/builders@0.12.0](https://github.com/discordjs/discord.js/compare/@discordjs/builders@0.11.0...@discordjs/builders@0.12.0) - (2022-01-24) ## Bug Fixes diff --git a/packages/builders/cliff.toml b/packages/builders/cliff.toml index fc2830ed5..db7b59ea0 100644 --- a/packages/builders/cliff.toml +++ b/packages/builders/cliff.toml @@ -58,8 +58,7 @@ commit_parsers = [ { body = ".*security", group = "Security"}, ] filter_commits = true -tag_pattern = "@discordjs\\/builders@.*" -skip_tags = "v[0-9]*|11|12" +tag_pattern = "@discordjs/builders@[0-9]*" ignore_tags = "" topo_order = false sort_commits = "newest" diff --git a/packages/builders/package.json b/packages/builders/package.json index d46c5701d..2a34c87da 100644 --- a/packages/builders/package.json +++ b/packages/builders/package.json @@ -9,7 +9,7 @@ "format": "prettier --write . && eslint src __tests__ --ext mjs,js,ts --fix", "docs": "typedoc --json docs/typedoc-out.json src/index.ts && node scripts/docs.mjs", "prepublishOnly": "yarn build && yarn lint && yarn test", - "changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/builders/*'" + "changelog": "git cliff --prepend ./CHANGELOG.md -l -c ./cliff.toml -r ../../ --include-path 'packages/builders/*'" }, "main": "./dist/index.js", "module": "./dist/index.mjs", diff --git a/packages/collection/CHANGELOG.md b/packages/collection/CHANGELOG.md index 9cbfe888c..41cc59f5e 100644 --- a/packages/collection/CHANGELOG.md +++ b/packages/collection/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. -# [0.6.0](https://github.com/discordjs/discord.js/compare/@discordjs/collection@0.5.0...@discordjs/collection@0.6.0) (2022-04-17) +# [@discordjs/collection@0.6.0](https://github.com/discordjs/discord.js/compare/@discordjs/collection@0.5.0...@discordjs/collection@0.6.0) - (2022-04-17) ## Features @@ -10,7 +10,7 @@ All notable changes to this project will be documented in this file. - **builders:** Add attachment command option type (#7203) ([ae0f35f](https://github.com/discordjs/discord.js/commit/ae0f35f51d68dfa5a7dc43d161ef9365171debdb)) - **Collection:** Add merging functions (#7299) ([e4bd07b](https://github.com/discordjs/discord.js/commit/e4bd07b2394f227ea06b72eb6999de9ab3127b25)) -# [0.5.0](https://github.com/discordjs/discord.js/compare/@discordjs/collection@0.4.0...@discordjs/collection@0.5.0) (2021-12-08) +# [@discordjs/collection@0.5.0](https://github.com/discordjs/discord.js/compare/@discordjs/collection@0.4.0...@discordjs/collection@0.5.0) - (2022-01-24) ## Refactor diff --git a/packages/collection/cliff.toml b/packages/collection/cliff.toml index eade8b2e6..8676fdc48 100644 --- a/packages/collection/cliff.toml +++ b/packages/collection/cliff.toml @@ -58,8 +58,7 @@ commit_parsers = [ { body = ".*security", group = "Security"}, ] filter_commits = true -tag_pattern = "@discordjs\\/collection@.*" -skip_tags = "v[0-9]*|11|12" +tag_pattern = "@discordjs/collection@[0-9]*" ignore_tags = "" topo_order = false sort_commits = "newest" diff --git a/packages/collection/package.json b/packages/collection/package.json index 6c614f8a5..b0cd36ff9 100644 --- a/packages/collection/package.json +++ b/packages/collection/package.json @@ -9,7 +9,7 @@ "format": "prettier --write . && eslint src __tests__ --ext mjs,js,ts --fix", "docs": "typedoc --json docs/typedoc-out.json src/index.ts && node scripts/docs.mjs", "prepublishOnly": "yarn build && yarn lint && yarn test", - "changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/collection/*'" + "changelog": "git cliff --prepend ./CHANGELOG.md -l -c ./cliff.toml -r ../../ --include-path 'packages/collection/*'" }, "main": "./dist/index.js", "module": "./dist/index.mjs", diff --git a/packages/rest/CHANGELOG.md b/packages/rest/CHANGELOG.md index 71be9f9ea..fded4c644 100644 --- a/packages/rest/CHANGELOG.md +++ b/packages/rest/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. -# [0.4.0](https://github.com/discordjs/discord.js/compare/@discordjs/rest@0.3.0...@discordjs/rest@0.4.0) (2022-04-17) +# [@discordjs/rest@0.4.0](https://github.com/discordjs/discord.js/compare/@discordjs/rest@0.3.0...@discordjs/rest@0.4.0) - (2022-04-17) ## Bug Fixes @@ -30,7 +30,7 @@ All notable changes to this project will be documented in this file. - **requestmanager:** Use timestampfrom (#7459) ([3298510](https://github.com/discordjs/discord.js/commit/32985109c3b7614d364007608f8c5af4bed753ae)) - **files:** Remove redundant file property names (#7340) ([6725038](https://github.com/discordjs/discord.js/commit/67250382f99872a9edff99ebaa482ffa895b0c37)) -# [0.3.0](https://github.com/discordjs/discord.js/compare/@discordjs/rest@0.2.0...@discordjs/rest@0.3.0) (2021-12-08) +# [@discordjs/rest@0.3.0](https://github.com/discordjs/discord.js/compare/@discordjs/rest@0.2.0...@discordjs/rest@0.3.0) - (2022-01-24) ## Bug Fixes diff --git a/packages/rest/cliff.toml b/packages/rest/cliff.toml index 45b45199d..80982f1d0 100644 --- a/packages/rest/cliff.toml +++ b/packages/rest/cliff.toml @@ -58,8 +58,7 @@ commit_parsers = [ { body = ".*security", group = "Security"}, ] filter_commits = true -tag_pattern = "@discordjs\\/rest@.*" -skip_tags = "v[0-9]*|11|12" +tag_pattern = "@discordjs/rest@[0-9]*" ignore_tags = "" topo_order = false sort_commits = "newest" diff --git a/packages/rest/package.json b/packages/rest/package.json index ae0205199..e87bc2b0a 100644 --- a/packages/rest/package.json +++ b/packages/rest/package.json @@ -9,7 +9,7 @@ "format": "prettier --write . && eslint src __tests__ --ext mjs,js,ts --fix", "docs": "typedoc --json docs/typedoc-out.json src/index.ts && node scripts/docs.mjs", "prepublishOnly": "yarn build && yarn lint && yarn test", - "changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/rest/*'" + "changelog": "git cliff --prepend ./CHANGELOG.md -l -c ./cliff.toml -r ../../ --include-path 'packages/rest/*'" }, "main": "./dist/index.js", "module": "./dist/index.mjs", diff --git a/packages/voice/CHANGELOG.md b/packages/voice/CHANGELOG.md index bd4319220..2e862bddf 100644 --- a/packages/voice/CHANGELOG.md +++ b/packages/voice/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. -# [0.9.0](https://github.com/discordjs/discord.js/compare/@discordjs/voice@0.8.0...@discordjs/voice@0.9.0) (2022-04-17) +# [@discordjs/voice@0.9.0](https://github.com/discordjs/discord.js/compare/@discordjs/voice@0.8.0...@discordjs/voice@0.9.0) - (2022-04-17) ## Bug Fixes @@ -15,7 +15,11 @@ All notable changes to this project will be documented in this file. - Add support for module: NodeNext in TS and ESM (#7598) ([8f1986a](https://github.com/discordjs/discord.js/commit/8f1986a6aa98365e09b00e84ad5f9f354ab61f3d)) - **builders:** Add attachment command option type (#7203) ([ae0f35f](https://github.com/discordjs/discord.js/commit/ae0f35f51d68dfa5a7dc43d161ef9365171debdb)) -# [0.8.0](https://github.com/discordjs/discord.js/compare/@discordjs/voice@0.7.5...@discordjs/voice@0.8.0) (2021-12-08) +## Styling + +- Cleanup tests and tsup configs ([6b8ef20](https://github.com/discordjs/discord.js/commit/6b8ef20cb3af5b5cfd176dd0aa0a1a1e98551629)) + +# [@discordjs/voice@0.8.0](https://github.com/discordjs/discord.js/compare/@discordjs/voice@0.7.5...@discordjs/voice@0.8.0) - (2022-01-24) ## Refactor diff --git a/packages/voice/cliff.toml b/packages/voice/cliff.toml index ba9c995d9..db259d760 100644 --- a/packages/voice/cliff.toml +++ b/packages/voice/cliff.toml @@ -58,8 +58,7 @@ commit_parsers = [ { body = ".*security", group = "Security"}, ] filter_commits = true -tag_pattern = "@discordjs\\/voice@.*" -skip_tags = "v[0-9]*|11|12" +tag_pattern = "@discordjs/voice@[0-9]*" ignore_tags = "" topo_order = false sort_commits = "newest"