Skip to content

Commit d12c7b8

Browse files
committed
Bump version number for hotfix
1 parent 0e5a90a commit d12c7b8

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.nuget/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
A Cross Platform C# Library That Adds Support For Aseprite Files in MonoGame Projects.
44

55
[![build-and-test](https://github.com/AristurtleDev/monogame-aseprite/actions/workflows/buildandtest.yml/badge.svg)](https://github.com/AristurtleDev/monogame-aseprite/actions/workflows/buildandtest.yml)
6-
[![Nuget 4.0.5](https://img.shields.io/nuget/v/MonoGame.Aseprite?color=blue&style=flat-square)](https://www.nuget.org/packages/MonoGame.Aseprite/4.0.5)
6+
[![Nuget 4.0.6](https://img.shields.io/nuget/v/MonoGame.Aseprite?color=blue&style=flat-square)](https://www.nuget.org/packages/MonoGame.Aseprite/4.0.6)
77
[![License: MIT](https://img.shields.io/badge/📃%20license-MIT-blue?style=flat)](LICENSE)
88
[![Twitter](https://img.shields.io/badge/%20-Share%20On%20Twitter-555?style=flat&logo=twitter)](https://twitter.com/intent/tweet?text=MonoGame.Aseprite%20by%20%40aristurtledev%0A%0AA%20cross-platform%20C%23%20library%20that%20adds%20support%20for%20Aseprite%20files%20in%20MonoGame%20projects.%20https%3A%2F%2Fgithub.com%2FAristurtleDev%2Fmonogame-aseprite%0A%0A%23monogame%20%23aseprite%20%23dotnet%20%23csharp%20%23oss%0A)
99

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
A Cross Platform C# Library That Adds Support For Aseprite Files in MonoGame Projects.
55

66
[![build-and-test](https://github.com/AristurtleDev/monogame-aseprite/actions/workflows/buildandtest.yml/badge.svg)](https://github.com/AristurtleDev/monogame-aseprite/actions/workflows/buildandtest.yml)
7-
[![Nuget 4.0.5](https://img.shields.io/nuget/v/MonoGame.Aseprite?color=blue&style=flat-square)](https://www.nuget.org/packages/MonoGame.Aseprite/4.0.5)
7+
[![Nuget 4.0.6](https://img.shields.io/nuget/v/MonoGame.Aseprite?color=blue&style=flat-square)](https://www.nuget.org/packages/MonoGame.Aseprite/4.0.6)
88
[![License: MIT](https://img.shields.io/badge/📃%20license-MIT-blue?style=flat)](LICENSE)
99
[![Twitter](https://img.shields.io/badge/%20-Share%20On%20Twitter-555?style=flat&logo=twitter)](https://twitter.com/intent/tweet?text=MonoGame.Aseprite%20by%20%40aristurtledev%0A%0AA%20cross-platform%20C%23%20library%20that%20adds%20support%20for%20Aseprite%20files%20in%20MonoGame%20projects.%20https%3A%2F%2Fgithub.com%2FAristurtleDev%2Fmonogame-aseprite%0A%0A%23monogame%20%23aseprite%20%23dotnet%20%23csharp%20%23oss%0A)
1010

source/MonoGame.Aseprite.Content.Pipeline/MonoGame.Aseprite.Content.Pipeline.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<ImplicitUsings>enable</ImplicitUsings>
55
<Nullable>enable</Nullable>
66
<GenerateDocumentationFile>False</GenerateDocumentationFile>
7-
<Version>4.0.5</Version>
7+
<Version>4.0.6</Version>
88
</PropertyGroup>
99

1010
<PropertyGroup>
@@ -21,9 +21,9 @@
2121
<!-- dotnet pack Nuget Config stuff -->
2222
<PropertyGroup>
2323
<PackageId>MonoGame.Aseprite.Content.Pipeline</PackageId>
24-
<Version>4.0.5</Version>
25-
<AssemblyVersion>4.0.5</AssemblyVersion>
26-
<FileVersion>4.0.5</FileVersion>
24+
<Version>4.0.6</Version>
25+
<AssemblyVersion>4.0.6</AssemblyVersion>
26+
<FileVersion>4.0.6</FileVersion>
2727
<Authors>Christopher Whitley</Authors>
2828
<Company>Aristurtle</Company>
2929
<PackageLicenseExpression>MIT</PackageLicenseExpression>
@@ -37,9 +37,9 @@
3737
<PackageTags>
3838
MonoGame;Aseprite;import;processes;read;write;sprite;animation;tileset;tilemap;spritesheet;pipeline;mgcb</PackageTags>
3939
<PackageReleaseNotes>
40-
Version 4.0.5
40+
Version 4.0.6
4141
The following bug fixes were implemented:
42-
- `Slice.Origin` value is not set property in constructor. (Closes #64)
42+
- Removed package dependency on DesktopGL (Closes #66)
4343
</PackageReleaseNotes>
4444
<Description>
4545
MonoGame.Aseprite.Content.Pipeline is a cross-platform C# library that adds an extension to the MonoGame

source/MonoGame.Aseprite/MonoGame.Aseprite.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<ImplicitUsings>enable</ImplicitUsings>
55
<Nullable>enable</Nullable>
66
<GenerateDocumentationFile>False</GenerateDocumentationFile>
7-
<Version>4.0.5</Version>
7+
<Version>4.0.6</Version>
88
</PropertyGroup>
99

1010
<PropertyGroup>
@@ -29,9 +29,9 @@
2929
</PackageTags>
3030
<PackageReadmeFile>README.md</PackageReadmeFile>
3131
<PackageReleaseNotes>
32-
Version 4.0.5
32+
Version 4.0.6
3333
The following bug fixes were implemented:
34-
- `Slice.Origin` value is not set property in constructor. (Closes #64)
34+
- Removed package dependency on DesktopGL (Closes #66)
3535
</PackageReleaseNotes>
3636
<Description>
3737
MonoGame.Aseprite is a cross-platofrm C# library that adds support to MonoGame projects for

0 commit comments

Comments
 (0)