Meta/3.15.1 (#2944)
* Update Discord.Net.targets * Update docfx.json * Update Discord.Net.nuspec * Update CHANGELOG.md
This commit is contained in:
13
CHANGELOG.md
13
CHANGELOG.md
@@ -1,5 +1,18 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [3.15.1] - 2024-06-18
|
||||||
|
### Added
|
||||||
|
- #2927 Add missing PollProperties (a59f4ba)
|
||||||
|
- #2942 Add purchase notification (9d92435)
|
||||||
|
- #2934 Add MessageCallData (21195a8)
|
||||||
|
- #2932 Config Bypass for CanSendResponse (9030a5b)
|
||||||
|
- #2933 Premium Buttons (531b5eb)
|
||||||
|
- #2941 Add UseExternalApps permission (f7f29d5)
|
||||||
|
### Misc
|
||||||
|
- #2936 Public constructor for Emote (3be72a8)
|
||||||
|
- #2935 Generic autocomplete (35b102a)
|
||||||
|
- #2929 Enable nuget debug symbols. (aa424f6)
|
||||||
|
|
||||||
## [3.15.0] - 2024-05-12
|
## [3.15.0] - 2024-05-12
|
||||||
### Added
|
### Added
|
||||||
- #2902 Polls (476ec06)
|
- #2902 Polls (476ec06)
|
||||||
|
|||||||
@@ -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.15.0</VersionPrefix>
|
<VersionPrefix>3.15.1</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.15.0",
|
"_appFooter": "Discord.Net © 2015-2024 3.15.1",
|
||||||
"_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.15.0$suffix$</version>
|
<version>3.15.1$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.15.0$suffix$" />
|
<dependency id="Discord.Net.Core" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.Rest" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Rest" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.WebSocket" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.WebSocket" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.Commands" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Commands" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.Webhook" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Webhook" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.Interactions" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Interactions" version="3.15.1$suffix$" />
|
||||||
</group>
|
</group>
|
||||||
<group targetFramework="net5.0">
|
<group targetFramework="net5.0">
|
||||||
<dependency id="Discord.Net.Core" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Core" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.Rest" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Rest" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.WebSocket" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.WebSocket" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.Commands" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Commands" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.Webhook" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Webhook" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.Interactions" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Interactions" version="3.15.1$suffix$" />
|
||||||
</group>
|
</group>
|
||||||
<group targetFramework="net461">
|
<group targetFramework="net461">
|
||||||
<dependency id="Discord.Net.Core" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Core" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.Rest" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Rest" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.WebSocket" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.WebSocket" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.Commands" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Commands" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.Webhook" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Webhook" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.Interactions" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Interactions" version="3.15.1$suffix$" />
|
||||||
</group>
|
</group>
|
||||||
<group targetFramework="netstandard2.0">
|
<group targetFramework="netstandard2.0">
|
||||||
<dependency id="Discord.Net.Core" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Core" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.Rest" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Rest" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.WebSocket" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.WebSocket" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.Commands" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Commands" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.Webhook" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Webhook" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.Interactions" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Interactions" version="3.15.1$suffix$" />
|
||||||
</group>
|
</group>
|
||||||
<group targetFramework="netstandard2.1">
|
<group targetFramework="netstandard2.1">
|
||||||
<dependency id="Discord.Net.Core" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Core" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.Rest" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Rest" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.WebSocket" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.WebSocket" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.Commands" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Commands" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.Webhook" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Webhook" version="3.15.1$suffix$" />
|
||||||
<dependency id="Discord.Net.Interactions" version="3.15.0$suffix$" />
|
<dependency id="Discord.Net.Interactions" version="3.15.1$suffix$" />
|
||||||
</group>
|
</group>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
|||||||
Reference in New Issue
Block a user