Skip to content

Commit

Permalink
fix this thing.
Browse files Browse the repository at this point in the history
  • Loading branch information
Misha-133 committed Mar 18, 2024
1 parent 75352d7 commit 439d679
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 34 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [3.14.1] - 2023-03-19
### Fixed
- Version number contains commit hash

## [3.14.0] - 2023-03-19

### Added
Expand Down
8 changes: 6 additions & 2 deletions Discord.Net.targets
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VersionPrefix>3.14.0</VersionPrefix>
<VersionPrefix>3.14.1</VersionPrefix>
<LangVersion>latest</LangVersion>
<Authors>Discord.Net Contributors</Authors>
<PackageTags>discord;discordapp</PackageTags>
Expand All @@ -11,7 +11,11 @@
<RepositoryUrl>git://github.com/Discord-Net/Discord.Net</RepositoryUrl>
<PackageReadmeFile>NUGET_README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(BuildNumber)' == '' ">
<PropertyGroup Condition=" '$(IsTagBuild)' == 'true' ">
<VersionSuffix></VersionSuffix>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(BuildNumber)' == '' And $(IsTagBuild) != 'true' ">
<VersionSuffix Condition=" '$(VersionSuffix)' != ''">$(VersionSuffix)-dev</VersionSuffix>
<VersionSuffix Condition=" '$(VersionSuffix)' == ''">dev</VersionSuffix>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion docs/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"globalMetadata": {
"_appTitle": "Discord.Net Documentation",
"_appName": "Discord.Net",
"_appFooter": "Discord.Net © 2015-2024 3.14.0",
"_appFooter": "Discord.Net © 2015-2024 3.14.1",
"_enableSearch": true,
"_appLogoPath": "marketing/logo/SVG/Logomark Purple.svg",
"_appFaviconPath": "favicon.png"
Expand Down
62 changes: 31 additions & 31 deletions src/Discord.Net/Discord.Net.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Discord.Net</id>
<version>3.14.0$suffix$</version>
<version>3.14.1$suffix$</version>
<title>Discord.Net</title>
<authors>Discord.Net Contributors</authors>
<owners>foxbot</owners>
Expand All @@ -15,44 +15,44 @@
<readme>NUGET_README.md</readme>
<dependencies>
<group targetFramework="net6.0">
<dependency id="Discord.Net.Core" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Rest" version="3.14.0$suffix$" />
<dependency id="Discord.Net.WebSocket" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Commands" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Webhook" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Interactions" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Core" version="3.14.1$suffix$" />
<dependency id="Discord.Net.Rest" version="3.14.1$suffix$" />
<dependency id="Discord.Net.WebSocket" version="3.14.1$suffix$" />
<dependency id="Discord.Net.Commands" version="3.14.1$suffix$" />
<dependency id="Discord.Net.Webhook" version="3.14.1$suffix$" />
<dependency id="Discord.Net.Interactions" version="3.14.1$suffix$" />
</group>
<group targetFramework="net5.0">
<dependency id="Discord.Net.Core" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Rest" version="3.14.0$suffix$" />
<dependency id="Discord.Net.WebSocket" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Commands" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Webhook" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Interactions" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Core" version="3.14.1$suffix$" />
<dependency id="Discord.Net.Rest" version="3.14.1$suffix$" />
<dependency id="Discord.Net.WebSocket" version="3.14.1$suffix$" />
<dependency id="Discord.Net.Commands" version="3.14.1$suffix$" />
<dependency id="Discord.Net.Webhook" version="3.14.1$suffix$" />
<dependency id="Discord.Net.Interactions" version="3.14.1$suffix$" />
</group>
<group targetFramework="net461">
<dependency id="Discord.Net.Core" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Rest" version="3.14.0$suffix$" />
<dependency id="Discord.Net.WebSocket" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Commands" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Webhook" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Interactions" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Core" version="3.14.1$suffix$" />
<dependency id="Discord.Net.Rest" version="3.14.1$suffix$" />
<dependency id="Discord.Net.WebSocket" version="3.14.1$suffix$" />
<dependency id="Discord.Net.Commands" version="3.14.1$suffix$" />
<dependency id="Discord.Net.Webhook" version="3.14.1$suffix$" />
<dependency id="Discord.Net.Interactions" version="3.14.1$suffix$" />
</group>
<group targetFramework="netstandard2.0">
<dependency id="Discord.Net.Core" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Rest" version="3.14.0$suffix$" />
<dependency id="Discord.Net.WebSocket" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Commands" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Webhook" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Interactions" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Core" version="3.14.1$suffix$" />
<dependency id="Discord.Net.Rest" version="3.14.1$suffix$" />
<dependency id="Discord.Net.WebSocket" version="3.14.1$suffix$" />
<dependency id="Discord.Net.Commands" version="3.14.1$suffix$" />
<dependency id="Discord.Net.Webhook" version="3.14.1$suffix$" />
<dependency id="Discord.Net.Interactions" version="3.14.1$suffix$" />
</group>
<group targetFramework="netstandard2.1">
<dependency id="Discord.Net.Core" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Rest" version="3.14.0$suffix$" />
<dependency id="Discord.Net.WebSocket" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Commands" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Webhook" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Interactions" version="3.14.0$suffix$" />
<dependency id="Discord.Net.Core" version="3.14.1$suffix$" />
<dependency id="Discord.Net.Rest" version="3.14.1$suffix$" />
<dependency id="Discord.Net.WebSocket" version="3.14.1$suffix$" />
<dependency id="Discord.Net.Commands" version="3.14.1$suffix$" />
<dependency id="Discord.Net.Webhook" version="3.14.1$suffix$" />
<dependency id="Discord.Net.Interactions" version="3.14.1$suffix$" />
</group>
</dependencies>
</metadata>
Expand Down

0 comments on commit 439d679

Please sign in to comment.