Skip to content

Commit 703f504

Browse files
committed
Bump version
1 parent 96b49f9 commit 703f504

File tree

2 files changed

+63
-1
lines changed

2 files changed

+63
-1
lines changed

CHANGELOG.md

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,50 @@
33
All notable changes to this project will be documented in this file.
44
This project mostly adheres to [Semantic Versioning][semver].
55

6+
## [0.7.1] - 2019-9-29
7+
8+
## Departure of a lead developer
9+
10+
It seems Discord has a thing against library developers. [They disabled the account of a discord.js developer because they were allegedly "underage" (below 13 years old)](https://github.com/discordjs/discord.js/issues/3440). There were credit card transactions to defend their innocence, but Discord argued that they need a photo of their face to properly verify their age, a request the developer declined to comply. Consequently, they chose to no longer be on Discord.
11+
12+
Recently, they did the same thing to [@Lakelezz], a huge contributor to Serenity. However, this time they did not state their exact reason, simply saying "in violation of the ToS". Just like the JS developer, she decided to stop affiliating herself with the platform, if this is how it presents its "gratitude" towards her. But also, to cease development of the library.
13+
14+
And thus, on her behalf, I, the main lead developer [@acdenisSK], announce her retirement of the project.
15+
16+
Thanks to the following for their contributions:
17+
18+
- [@acdenisSK]
19+
- [@Erk-]
20+
- [@ikkerens]
21+
- [@kyranet]
22+
- [@Lakelezz]
23+
- [@shnarazk]
24+
- [@Zalaxx]
25+
26+
### Added
27+
28+
- [model] Add support for the `preferred_locale` field ([@Erk-]) [c:2d3e585]
29+
- [meta] Add missing word `need`. ([@Lakelezz]) [c:65837f5]
30+
- [model] Add new message fields ([@Erk-]) [c:e762ea9]
31+
- [gateway/client] Implement WebSocket shutdown support ([@ikkerens]) [c:711882b]
32+
- [utils] Add more formats and case insensitivity to `parse_invite` ([@ikkerens]) [c:0183714]
33+
- [model] Add optional inviter field to Invite ([@ikkerens]) [c:21c95fd]
34+
35+
### Changed
36+
37+
- [meta] Set minimum Rust version to `1.37.0`. ([@Lakelezz]) [c:de9e8a6]
38+
- [meta] Update related project's hrefs ([@kyranet]) [c:445810f]
39+
40+
### Fixed
41+
42+
- [meta] Fix serenity version in the readme ([@Zalaxx]) [c:730c959]
43+
- [framework] Fix incorrect label usage in plain help commands ([@acdenisSK]) [c:d427da4]
44+
- [model] Fix `has_role` returning an incorrect result if the member is not cached ([@ikkerens]) [c:96b49f9]
45+
46+
### Removed
47+
48+
- [meta] Remove the last mention of the global CACHE ([@shnarazk]) [c:ebdeb4e]
49+
650
## [0.7.0] - 2019-8-29
751

852
An emergency release to fix a conflict in our [`ring`](https://github.com/briansmith/ring) dependency that prevents compilation if you pull in an older and newer version at the same time.
@@ -3115,6 +3159,7 @@ rest::get_guilds(GuildPagination::After(GuildId(777)), 50);
31153159

31163160
Initial commit.
31173161

3162+
[0.7.1]: https://github.com/serenity-rs/serenity/compare/v0.7.0...v0.7.1
31183163
[0.7.0]: https://github.com/serenity-rs/serenity/compare/v0.6.4...v0.7.0
31193164
[0.6.4]: https://github.com/serenity-rs/serenity/compare/v0.6.3...v0.6.4
31203165
[0.6.3]: https://github.com/serenity-rs/serenity/compare/v0.6.2...v0.6.3
@@ -3195,6 +3240,7 @@ Initial commit.
31953240
[@hyarsan]: https://github.com/hyarsan
31963241
[@icewind1991]: https://github.com/icewind1991
31973242
[@iCrawl]: https://github.com/iCrawl
3243+
[@ikkerens]: https://github.com/ikkerens
31983244
[@imnotbad]: https://github.com/imnotbad
31993245
[@indiv0]: https://github.com/indiv0
32003246
[@ijks]: https://github.com/ijks
@@ -3204,6 +3250,7 @@ Initial commit.
32043250
[@jkcclemens]: https://github.com/jkcclemens
32053251
[@joek13]: https://github.com/joek13
32063252
[@Kroisse]: https://github.com/Kroisse
3253+
[@kyranet]: https://github.com/kyranet
32073254
[@Lakelezz]: https://github.com/Lakelezz
32083255
[@leo-lb]: https://github.com/leo-lb
32093256
[@lolzballs]: https://github.com/lolzballs
@@ -3225,6 +3272,7 @@ Initial commit.
32253272
[@Roughsketch]: https://github.com/Roughsketch
32263273
[@rsaihe]: https://github.com/rsaihe
32273274
[@Scetch]: https://github.com/Scetch
3275+
[@shnarazk]: https://github.com/shnarazk
32283276
[@Sreyas-Sreelal]: https://github.com/Sreyas-Sreelal
32293277
[@sschroe]: https://github.com/sschroe
32303278
[@SunDwarf]: https://github.com/SunDwarf
@@ -3237,8 +3285,22 @@ Initial commit.
32373285
[@xentec]: https://github.com/xentec
32383286
[@xacrimon]: https://github.com/xacrimon
32393287
[@xSke]: https://github.com/xSke
3288+
[@Zalaxx]: https://github.com/Zalaxx
32403289
[@zeyla]: https://github.com/zeyla
32413290

3291+
[c:de9e8a6]: https://github.com/serenity-rs/serenity/commit/de9e8a673f906311957bb2f6e31026cc57fd86b1
3292+
[c:445810f]: https://github.com/serenity-rs/serenity/commit/445810f0673319462b685d849c6ac87ab739f44d
3293+
[c:2d3e585]: https://github.com/serenity-rs/serenity/commit/2d3e585506d20c4ffab34ff015679a1dcca30575
3294+
[c:65837f5]: https://github.com/serenity-rs/serenity/commit/65837f54a671a30a869fe09e2a1abc70d64a5226
3295+
[c:730c959]: https://github.com/serenity-rs/serenity/commit/730c959c73b0e3227a42dc2373aed646e286c3a4
3296+
[c:e762ea9]: https://github.com/serenity-rs/serenity/commit/e762ea948d6ee3fdf76991f60e743adcb8c3d8ae
3297+
[c:711882b]: https://github.com/serenity-rs/serenity/commit/711882baabde1127b9bf6e2e39116306961f671a
3298+
[c:0183714]: https://github.com/serenity-rs/serenity/commit/0183714d450b2285cfae3c619063965783af95c1
3299+
[c:21c95fd]: https://github.com/serenity-rs/serenity/commit/21c95fdfd9b4fe8a98d3a0e459e8ab94ceecaa23
3300+
[c:ebdeb4e]: https://github.com/serenity-rs/serenity/commit/ebdeb4e456c206ea0cccd94318e4eb19660241a0
3301+
[c:d427da4]: https://github.com/serenity-rs/serenity/commit/d427da4a17dd78fe5f4f681855e028abb3fbccee
3302+
[c:96b49f9]: https://github.com/serenity-rs/serenity/commit/96b49f97c080ea6fdc2e1bbd1cd1e90958adceb1
3303+
32423304
[c:50d2a76]: https://github.com/serenity-rs/serenity/commit/50d2a7654e0aa5248c16941b68da30d758262419
32433305

32443306
[c:aa1070d]: https://github.com/serenity-rs/serenity/commit/aa1070d05f23ea2a7a57857ee47e7b41af36815b

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "ISC"
88
name = "serenity"
99
readme = "README.md"
1010
repository = "https://github.com/serenity-rs/serenity.git"
11-
version = "0.7.0"
11+
version = "0.7.1"
1212
edition = "2018"
1313

1414
[dependencies]

0 commit comments

Comments
 (0)