diff --git a/CHANGELOG.md b/CHANGELOG.md index 59e10340..a77f1257 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +# [0.17.0](https://github.com/discordjs/discord-api-types/compare/0.16.0...0.17.0) (2021-04-17) + +### Bug Fixes + +- **APIChannel:** `rtc_region` is optional ([#118](https://github.com/discordjs/discord-api-types/issues/118)) ([617f507](https://github.com/discordjs/discord-api-types/commit/617f507427fae6456de228a23809ab04c1df13f6)) + +### Code Refactoring + +- **APISticker:** remove `preview_asset` ([#119](https://github.com/discordjs/discord-api-types/issues/119)) ([9817623](https://github.com/discordjs/discord-api-types/commit/9817623291ec852a831c3de225e90a65d83dac7f)) + +### Features + +- **WebhookMessage:** add `GET` route types ([#120](https://github.com/discordjs/discord-api-types/issues/120)) ([3294fb1](https://github.com/discordjs/discord-api-types/commit/3294fb15ae6c259c1b53b7f2eca4ea8dca2f2372)) + +### BREAKING CHANGES + +- **APISticker:** This removes the `preview_asset` property from sticket objects + - Reference: https://github.com/discord/discord-api-docs/commit/b9b8db2 +- **APIChannel:** This corrects the fact that `rtc_region` isn't present on non-voice-like channels + # [0.16.0](https://github.com/discordjs/discord-api-types/compare/0.15.1...0.16.0) (2021-04-14) ### Features diff --git a/deno/CHANGELOG.md b/deno/CHANGELOG.md index 59e10340..a77f1257 100644 --- a/deno/CHANGELOG.md +++ b/deno/CHANGELOG.md @@ -1,3 +1,23 @@ +# [0.17.0](https://github.com/discordjs/discord-api-types/compare/0.16.0...0.17.0) (2021-04-17) + +### Bug Fixes + +- **APIChannel:** `rtc_region` is optional ([#118](https://github.com/discordjs/discord-api-types/issues/118)) ([617f507](https://github.com/discordjs/discord-api-types/commit/617f507427fae6456de228a23809ab04c1df13f6)) + +### Code Refactoring + +- **APISticker:** remove `preview_asset` ([#119](https://github.com/discordjs/discord-api-types/issues/119)) ([9817623](https://github.com/discordjs/discord-api-types/commit/9817623291ec852a831c3de225e90a65d83dac7f)) + +### Features + +- **WebhookMessage:** add `GET` route types ([#120](https://github.com/discordjs/discord-api-types/issues/120)) ([3294fb1](https://github.com/discordjs/discord-api-types/commit/3294fb15ae6c259c1b53b7f2eca4ea8dca2f2372)) + +### BREAKING CHANGES + +- **APISticker:** This removes the `preview_asset` property from sticket objects + - Reference: https://github.com/discord/discord-api-docs/commit/b9b8db2 +- **APIChannel:** This corrects the fact that `rtc_region` isn't present on non-voice-like channels + # [0.16.0](https://github.com/discordjs/discord-api-types/compare/0.15.1...0.16.0) (2021-04-14) ### Features diff --git a/package-lock.json b/package-lock.json index e481303d..739be25e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { "name": "discord-api-types", - "version": "0.16.0", + "version": "0.17.0", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "0.16.0", + "version": "0.17.0", "license": "MIT", "devDependencies": { "@babel/core": "^7.13.15", diff --git a/package.json b/package.json index 349c6569..4ac04ba9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "discord-api-types", - "version": "0.16.0", + "version": "0.17.0", "description": "Discord API typings that are kept up to date for use in bot library creation.", "main": "./v8.js", "module": "./v8.mjs",