Skip to content

Commit

Permalink
Bump to 0.9.0 (#1047)
Browse files Browse the repository at this point in the history
  • Loading branch information
arqunis authored Oct 30, 2020
1 parent c9971b6 commit 8df4439
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 7 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
This project mostly adheres to [Semantic Versioning][semver].

## [0.9.0] - 2020-10-30

Thanks to the following for their contributions:

- [@james7132]
- [@JellyWX]
- [@nitsuga5124]
- [@Qeenon]

### Added

- [client] Mention the required intents for certain events ([@nitsuga5124]) [c:c9971b6]
- [gateway] Add support for filtering by user ids when requesting guild chunks ([@james7132]) [c:0d9b821]

### Changed

- [gateway] Change `Shard::chunk_guilds` to `chunk_guild` ([@james7132]) [c:50d9643]
- [framework] Use `~` as a default command prefix ([@Qeenon]) [c:d9e9bf7]
- [utils] Make `utils::shard_id` accept the guild id with `impl Into<u64>` ([@JellyWX]) [c:85b5489]

## [0.9.0-rc.4] - 2020-10-24

Thanks to the following for their contributions:
Expand Down Expand Up @@ -3723,6 +3743,7 @@ rest::get_guilds(GuildPagination::After(GuildId(777)), 50);

Initial commit.

[0.9.0]: https://github.com/serenity-rs/serenity/compare/v0.9.0-rc.4...v0.9.0
[0.9.0-rc.4]: https://github.com/serenity-rs/serenity/compare/v0.9.0-rc.3...v0.9.0-rc.4
[0.9.0-rc.3]: https://github.com/serenity-rs/serenity/compare/v0.9.0-rc.2...v0.9.0-rc.3
[0.9.0-rc.2]: https://github.com/serenity-rs/serenity/compare/v0.9.0-rc.1...v0.9.0-rc.2
Expand Down Expand Up @@ -3842,6 +3863,7 @@ Initial commit.
[@ijks]: https://github.com/ijks
[@JellyWX]: https://github.com/JellyWX
[@Jerald]: https://github.com/Jerald
[@james7132]: https://github.com/james7132
[@jhelwig]: https://github.com/jhelwig
[@jkcclemens]: https://github.com/jkcclemens
[@jmgao]: https://github.com/jmgao
Expand Down Expand Up @@ -3919,6 +3941,12 @@ Initial commit.
[@zeyla]: https://github.com/zeyla


[c:c9971b6]: https://github.com/serenity-rs/serenity/commit/c9971b6e60f3b5f5ac9c3e8931f6a7ecbf8194db
[c:0d9b821]: https://github.com/serenity-rs/serenity/commit/0d9b821953268edeeea8b1c01fe0d33447ba08cb
[c:50d9643]: https://github.com/serenity-rs/serenity/commit/50d96436612b18c5bb807287b10a68f62747b7e4
[c:d9e9bf7]: https://github.com/serenity-rs/serenity/commit/d9e9bf77aff4770e22aacc5153947e1ecf1a9862
[c:85b5489]: https://github.com/serenity-rs/serenity/commit/85b5489bc8f05a98ad8aeacc20e220ad08206ff8

[c:7e55a0e]: https://github.com/serenity-rs/serenity/commit/7e55a0e6eec2106b0ca540822772706232aa2a1f

[c:5bb8342]: https://github.com/serenity-rs/serenity/commit/5bb8342b018bc60def13f36218fd9ee31ce18c0d
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "ISC"
name = "serenity"
readme = "README.md"
repository = "https://github.com/serenity-rs/serenity.git"
version = "0.9.0-rc.4"
version = "0.9.0"
edition = "2018"

[dependencies]
Expand All @@ -28,7 +28,7 @@ version = "0.2"

[dependencies.command_attr]
path = "./command_attr"
version = "0.3.0-rc.4"
version = "0.3"
optional = true

[dependencies.serde]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Add the following to your `Cargo.toml` file:

```toml
[dependencies]
serenity = "0.9.0-rc.4"
serenity = "0.9.0"
```

Serenity supports a minimum of Rust 1.40.
Expand All @@ -115,7 +115,7 @@ Cargo.toml:
[dependencies.serenity]
default-features = false
features = ["pick", "your", "feature", "names", "here"]
version = "0.9.0-rc.4"
version = "0.9.0"
```

The default features are: `builder`, `cache`, `client`, `framework`, `gateway`,
Expand Down Expand Up @@ -175,7 +175,7 @@ features = [
"utils",
"rustls_backend",
]
version = "0.9.0-rc.4"
version = "0.9.0"
```

# Dependencies
Expand Down
2 changes: 1 addition & 1 deletion command_attr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "command_attr"
version = "0.3.0-rc.4"
version = "0.3.0"
authors = ["acdenisSK <acdenissk69@gmail.com>"]
edition = "2018"
description = "Procedural macros for command creation for the Serenity library."
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
//!
//! ```toml
//! [dependencies]
//! serenity = "0.9.0-rc.4"
//! serenity = "0.9.0"
//! ```
//!
//! [`Cache`]: cache/struct.Cache.html
Expand Down

0 comments on commit 8df4439

Please sign in to comment.