Skip to content

Commit 5e03ef8

Browse files
committed
Bump version to 5.0.1
1 parent 348f698 commit 5e03ef8

6 files changed

Lines changed: 11 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v5.0.1
2+
- Fixed voice IP discovery.
3+
14
## v5.0.0
25
### Breaking Changes
36
- **Discore now targets .NET 6.0.**

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,3 @@ If you run into a bug, would like to request a feature, or just have a question,
2828

2929
## Contributing
3030
Contributions are welcome! For small changes, you can just [open a pull request](https://github.com/Francessco121/Discore/pulls). However, for any larger changes please open a related issue (if there isn't one already) to discuss the proposed changes. PRs with more significant changes are less likely to be merged without some prior discussion.
31-
32-
## Alternatives
33-
Don't like our approach? Try some other great options:
34-
- [DSharpPlus](https://github.com/DSharpPlus/DSharpPlus)
35-
- [Discord.Net](https://github.com/discord-net/Discord.Net)

docs/guides/getting_started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ Discore can be added as a project dependency in a few ways:
1414
#### [.NET CLI](#tab/dotnet-cli)
1515
Run the following in your `.csproj` directory:
1616
```
17-
dotnet add package Discore --version 5.0.0
17+
dotnet add package Discore --version 5.0.1
1818
```
1919
#### [PackageReference](#tab/package-reference)
2020
Add the following to your `.csproj`:
2121
```xml
22-
<PackageReference Include="Discore" Version="5.0.0" />
22+
<PackageReference Include="Discore" Version="5.0.1" />
2323
```
2424
#### [Source](#tab/source)
2525
Download the [the source code](https://github.com/Francessco121/Discore) and add `src/Discore/Discore.csproj` as a local project reference.

samples/Discore.Samples.PingPong/Discore.Samples.PingPong.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<ItemGroup>
1010
<ProjectReference Include="../../src/Discore/Discore.csproj" />
1111
<!-- Replace the ProjectReference with this when writing your application! -->
12-
<!-- <PackageReference Include="Discore" Version="5.0.0" /> -->
12+
<!-- <PackageReference Include="Discore" Version="5.0.1" /> -->
1313
</ItemGroup>
1414

1515
<ItemGroup>

samples/Discore.Samples.VoiceSending/Discore.Samples.VoiceSending.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<ItemGroup>
1010
<ProjectReference Include="../../src/Discore/Discore.csproj" />
1111
<!-- Replace the ProjectReference with this when writing your application! -->
12-
<!-- <PackageReference Include="Discore" Version="5.0.0" /> -->
12+
<!-- <PackageReference Include="Discore" Version="5.0.1" /> -->
1313
</ItemGroup>
1414

1515
<ItemGroup>

src/Discore/Discore.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<NoWarn>1591;1573</NoWarn>
88
<GenerateDocumentationFile>true</GenerateDocumentationFile>
99
<Copyright>Copyright (c) 2016-2023 Ethan Lafrenais and contributors</Copyright>
10-
<Version>5.0.0</Version>
11-
<AssemblyVersion>5.0.0.0</AssemblyVersion>
12-
<FileVersion>5.0.0.0</FileVersion>
10+
<Version>5.0.1</Version>
11+
<AssemblyVersion>5.0.1.0</AssemblyVersion>
12+
<FileVersion>5.0.1.0</FileVersion>
1313
<Authors>Ethan Lafrenais;Tristan Smith;Discore Contributors</Authors>
1414
<PackageTags>discord;discord-api;discord-library</PackageTags>
1515
<Description>Discore is a light-weight .NET library for creating Discord bots.
@@ -20,7 +20,7 @@ Please note: Discore is not an official Discord client library!</Description>
2020
<RepositoryUrl>https://github.com/Francessco121/Discore.git</RepositoryUrl>
2121
<RepositoryType>git</RepositoryType>
2222
<PackageProjectUrl>https://github.com/Francessco121/Discore</PackageProjectUrl>
23-
<PackageReleaseNotes>See https://github.com/Francessco121/Discore/releases/tag/v5.0.0</PackageReleaseNotes>
23+
<PackageReleaseNotes>See https://github.com/Francessco121/Discore/releases/tag/v5.0.1</PackageReleaseNotes>
2424
<PackageLicenseFile></PackageLicenseFile>
2525
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2626
<PackageReadmeFile>README.md</PackageReadmeFile>

0 commit comments

Comments
 (0)