diff --git a/docs/general/updating.md b/docs/general/updating.md index cc2c7399f..4c0bca98d 100644 --- a/docs/general/updating.md +++ b/docs/general/updating.md @@ -1,3 +1,7 @@ +# Version 11.2.0 +v11.2.0 features fixes a lot of bugs we encountered along the 11.1.0 release, as well as support for new features such as Message Attachments and UserGuildSettings. +See [the changelog](https://github.com/hydrabolt/discord.js/releases/tag/11.2.0) for a full list of changes, including information about deprecations. + # Version 11.1.0 v11.1.0 features improved voice and gateway stability, as well as support for new features such as audit logs and searching for messages. See [the changelog](https://github.com/hydrabolt/discord.js/releases/tag/11.1.0) for a full list of changes, including @@ -118,9 +122,9 @@ The guild parameter that has been dropped from the guild-related events can stil ## Dates and timestamps All dates/timestamps on the structures have been refactored to have a consistent naming scheme and availability. -All of them are named similarly to this: -**Date:** `Message.createdAt` -**Timestamp:** `Message.createdTimestamp` +All of them are named similarly to this: +**Date:** `Message.createdAt` +**Timestamp:** `Message.createdTimestamp` See the docs for each structure to see which date/timestamps are available on them. @@ -149,7 +153,7 @@ A couple more important details: * `Client.servers.length` ==> `client.guilds.size` (all instances of `server` are now `guild`) ## No more callbacks! -Version 9 eschews callbacks in favour of Promises. This means all code relying on callbacks must be changed. +Version 9 eschews callbacks in favour of Promises. This means all code relying on callbacks must be changed. For example, the following code: ```js diff --git a/docs/general/welcome.md b/docs/general/welcome.md index 01a3d6717..62a4fd121 100644 --- a/docs/general/welcome.md +++ b/docs/general/welcome.md @@ -17,8 +17,8 @@ # Welcome! -Welcome to the discord.js v11.1.0 documentation. -v11.1.0 features improved voice and gateway stability, as well as support for new features such as audit logs and searching for messages. +Welcome to the discord.js v11.2.0 documentation. +v11.2.0 features fixes a lot of bugs we encountered along the 11.1.0 release, as well as support for new features such as Message Attachments and UserGuildSettings. ## About discord.js is a powerful [node.js](https://nodejs.org) module that allows you to interact with the @@ -30,11 +30,11 @@ discord.js is a powerful [node.js](https://nodejs.org) module that allows you to - 100% coverage of the Discord API ## Installation -**Node.js 6.0.0 or newer is required.** +**Node.js 6.0.0 or newer is required.** Ignore any warnings about unmet peer dependencies, as they're all optional. -Without voice support: `npm install discord.js --save` -With voice support ([node-opus](https://www.npmjs.com/package/node-opus)): `npm install discord.js node-opus --save` +Without voice support: `npm install discord.js --save` +With voice support ([node-opus](https://www.npmjs.com/package/node-opus)): `npm install discord.js node-opus --save` With voice support ([opusscript](https://www.npmjs.com/package/opusscript)): `npm install discord.js opusscript --save` ### Audio engines @@ -79,7 +79,7 @@ client.login('your token'); ## Contributing Before creating an issue, please ensure that it hasn't already been reported/suggested, and double-check the -[documentation](https://discord.js.org/#/docs). +[documentation](https://discord.js.org/#/docs). See [the contribution guide](https://github.com/hydrabolt/discord.js/blob/master/.github/CONTRIBUTING.md) if you'd like to submit a PR. ## Help