meta: 3.15.0 (#2925)
This commit is contained in:
25
CHANGELOG.md
25
CHANGELOG.md
@@ -1,5 +1,30 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [3.15.0] - 2024-05-12
|
||||||
|
### Added
|
||||||
|
- #2902 Polls (476ec06)
|
||||||
|
- #2898 Guild bans with seconds prune period (d1da2a0)
|
||||||
|
- #2903 Create `RequireTeamAttribute` (753724d)
|
||||||
|
- #2906 Create `DoHierarchyCheckAttribute` (1a5cba8)
|
||||||
|
- #2923 Create `RequireRoleAttribute` (5dadcb2)
|
||||||
|
- #2919 More store stuff (f9086d3)
|
||||||
|
- #2920 Add `SocketInteraction.InteractionChannel` (3054505)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- #2910 RestDMChannel relies on recipient (13ea566)
|
||||||
|
- #2911 Don't rely on Guild for id (397a887)
|
||||||
|
- #2912 Don't depend on WebSocket for Interaction service (a2f624e)
|
||||||
|
- #2922 NRE with rest interactions & no api call (again) (83fdc89)
|
||||||
|
- #2924 Fix null error when using a `SelectMenuBuilder` constructor (93cb71a)
|
||||||
|
|
||||||
|
### Misc
|
||||||
|
- #2905 Remove analyzer project & resolve some build warnings (7aab366)
|
||||||
|
- #2913 Replace generic exceptions. (54d2fe5)
|
||||||
|
- #2908 Support options in Rest's AddRoleAsync (b70e21b)
|
||||||
|
- #2914 `.Distinct()` roles(ids) in `IGuildUser.ModifyAsync` (27a0785)
|
||||||
|
- #2915 Improve bulk bans (f85bf9a)
|
||||||
|
|
||||||
|
|
||||||
## [3.14.1] - 2024-03-19
|
## [3.14.1] - 2024-03-19
|
||||||
### Fixed
|
### Fixed
|
||||||
- Version number contains commit hash
|
- Version number contains commit hash
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<VersionPrefix>3.14.1</VersionPrefix>
|
<VersionPrefix>3.15.0</VersionPrefix>
|
||||||
<LangVersion>latest</LangVersion>
|
<LangVersion>latest</LangVersion>
|
||||||
<Authors>Discord.Net Contributors</Authors>
|
<Authors>Discord.Net Contributors</Authors>
|
||||||
<PackageTags>discord;discordapp</PackageTags>
|
<PackageTags>discord;discordapp</PackageTags>
|
||||||
|
|||||||
@@ -59,7 +59,7 @@
|
|||||||
"globalMetadata": {
|
"globalMetadata": {
|
||||||
"_appTitle": "Discord.Net Documentation",
|
"_appTitle": "Discord.Net Documentation",
|
||||||
"_appName": "Discord.Net",
|
"_appName": "Discord.Net",
|
||||||
"_appFooter": "Discord.Net © 2015-2024 3.14.1",
|
"_appFooter": "Discord.Net © 2015-2024 3.15.0",
|
||||||
"_enableSearch": true,
|
"_enableSearch": true,
|
||||||
"_appLogoPath": "marketing/logo/SVG/Logomark Purple.svg",
|
"_appLogoPath": "marketing/logo/SVG/Logomark Purple.svg",
|
||||||
"_appFaviconPath": "favicon.png"
|
"_appFaviconPath": "favicon.png"
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||||
<metadata>
|
<metadata>
|
||||||
<id>Discord.Net</id>
|
<id>Discord.Net</id>
|
||||||
<version>3.14.1$suffix$</version>
|
<version>3.15.0$suffix$</version>
|
||||||
<title>Discord.Net</title>
|
<title>Discord.Net</title>
|
||||||
<authors>Discord.Net Contributors</authors>
|
<authors>Discord.Net Contributors</authors>
|
||||||
<owners>foxbot</owners>
|
<owners>foxbot</owners>
|
||||||
@@ -15,44 +15,44 @@
|
|||||||
<readme>NUGET_README.md</readme>
|
<readme>NUGET_README.md</readme>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<group targetFramework="net6.0">
|
<group targetFramework="net6.0">
|
||||||
<dependency id="Discord.Net.Core" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Core" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.Rest" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Rest" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.WebSocket" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.WebSocket" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.Commands" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Commands" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.Webhook" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Webhook" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.Interactions" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Interactions" version="3.15.0$suffix$" />
|
||||||
</group>
|
</group>
|
||||||
<group targetFramework="net5.0">
|
<group targetFramework="net5.0">
|
||||||
<dependency id="Discord.Net.Core" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Core" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.Rest" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Rest" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.WebSocket" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.WebSocket" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.Commands" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Commands" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.Webhook" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Webhook" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.Interactions" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Interactions" version="3.15.0$suffix$" />
|
||||||
</group>
|
</group>
|
||||||
<group targetFramework="net461">
|
<group targetFramework="net461">
|
||||||
<dependency id="Discord.Net.Core" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Core" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.Rest" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Rest" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.WebSocket" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.WebSocket" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.Commands" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Commands" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.Webhook" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Webhook" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.Interactions" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Interactions" version="3.15.0$suffix$" />
|
||||||
</group>
|
</group>
|
||||||
<group targetFramework="netstandard2.0">
|
<group targetFramework="netstandard2.0">
|
||||||
<dependency id="Discord.Net.Core" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Core" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.Rest" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Rest" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.WebSocket" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.WebSocket" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.Commands" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Commands" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.Webhook" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Webhook" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.Interactions" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Interactions" version="3.15.0$suffix$" />
|
||||||
</group>
|
</group>
|
||||||
<group targetFramework="netstandard2.1">
|
<group targetFramework="netstandard2.1">
|
||||||
<dependency id="Discord.Net.Core" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Core" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.Rest" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Rest" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.WebSocket" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.WebSocket" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.Commands" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Commands" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.Webhook" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Webhook" version="3.15.0$suffix$" />
|
||||||
<dependency id="Discord.Net.Interactions" version="3.14.1$suffix$" />
|
<dependency id="Discord.Net.Interactions" version="3.15.0$suffix$" />
|
||||||
</group>
|
</group>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
|||||||
Reference in New Issue
Block a user