Skip to content

Commit

Permalink
Update projects for API doc fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
Thraka committed Jan 5, 2022
1 parent ab58ae4 commit 182404d
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 12 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ SadConsole uses NuGet for its .NET dependencies:

## Latest changes

**v9.2.0 (12/30/2021)**
**v9.2.1 (01/04/2022)**

(v9.2.1 fixes API documentation generation, all other changes are for 9.2.0)

### Breaking changes

Expand Down
5 changes: 3 additions & 2 deletions SadConsole.Extended/SadConsole.Extended.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>netstandard2.1;netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
<RootNamespace>SadConsole</RootNamespace>
<DocumentationFile>SadConsole.Extended.xml</DocumentationFile>
<Version>9.2.0</Version>
<Version>9.2.1</Version>
<Version Condition="'$(Configuration)'=='Debug'">$(Version)-debug</Version>
<Authors>Thraka</Authors>
<Company>SadLogic</Company>
Expand All @@ -26,6 +26,7 @@
<EmbedAllSources>true</EmbedAllSources>
<PackageTags>roguelike;cli;game;development;console;ansi;ascii;textmode;monogame;sfml;sadconsole</PackageTags>
<PackageReleaseNotes>
- 9.2.1 specifically fixes API documentation generation.
- Added two cursor keyboard handlers: ClassicConsoleKeyboardHandler and C64KeyboardHandler.
- Added a new MoveViewPortKeyboardHandler component that uses the keyboard to scroll a view port.
- New surface.PrintFadingText extension method that prints text that fades into the background.
Expand All @@ -39,7 +40,7 @@

<ItemGroup>
<ProjectReference Condition=" '$(UseProjectReferences)' == 'true' " Include="..\SadConsole\SadConsole.csproj" />
<PackageReference Condition=" '$(UseProjectReferences)' != 'true' " Include="SadConsole" Version="9.2.0" />
<PackageReference Condition=" '$(UseProjectReferences)' != 'true' " Include="SadConsole" Version="9.2.1" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="ColorMineStandard" Version="1.0.0" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="5.0.0" />
Expand Down
6 changes: 3 additions & 3 deletions SadConsole.Host.MonoGame/SadConsole.Host.MonoGame.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>netstandard2.1;netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
<RootNamespace>SadConsole.Host.MonoGame</RootNamespace>
<DocumentationFile>SadConsole.Host.MonoGame.xml</DocumentationFile>
<Version>9.2.0</Version>
<Version>9.2.1</Version>
<Version Condition="'$(Configuration)'=='Debug'">$(Version)-debug</Version>
<Authors>Thraka</Authors>
<Company>SadLogic</Company>
Expand All @@ -25,7 +25,7 @@
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedAllSources>true</EmbedAllSources>
<PackageTags>monogame;roguelike;cli;xna;game;development;console;ansi;ascii;textmode;sadconsole</PackageTags>
<PackageReleaseNotes>Various little fixes. Updates for SadConsole 9.2.0</PackageReleaseNotes>
<PackageReleaseNotes>Various little fixes. Updates for SadConsole 9.2.1</PackageReleaseNotes>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -34,7 +34,7 @@

<ItemGroup>
<ProjectReference Condition=" '$(UseProjectReferences)' == 'true' " Include="..\SadConsole\SadConsole.csproj" />
<PackageReference Condition=" '$(UseProjectReferences)' != 'true' " Include="SadConsole" Version="9.2.0" />
<PackageReference Condition=" '$(UseProjectReferences)' != 'true' " Include="SadConsole" Version="9.2.1" />
<PackageReference Include="TheSadRogue.Primitives" Version="1.1.1" />
<PackageReference Include="TheSadRogue.Primitives.MonoGame" Version="1.0.0" />
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.0.1641" />
Expand Down
6 changes: 3 additions & 3 deletions SadConsole.Host.SFML/SadConsole.Host.SFML.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>netstandard2.1;netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
<RootNamespace>SadConsole.Host.SFML</RootNamespace>
<DocumentationFile>SadConsole.Host.SFML.xml</DocumentationFile>
<Version>9.2.0</Version>
<Version>9.2.1</Version>
<Version Condition="'$(Configuration)'=='Debug'">$(Version)-debug</Version>
<Authors>Thraka</Authors>
<Company>SadLogic</Company>
Expand All @@ -25,7 +25,7 @@
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedAllSources>true</EmbedAllSources>
<PackageTags>sfml;roguelike;cli;game;development;console;ansi;ascii;textmode;sadconsole</PackageTags>
<PackageReleaseNotes>Various little fixes. Updates for SadConsole 9.2.0</PackageReleaseNotes>
<PackageReleaseNotes>Various little fixes. Updates for SadConsole 9.2.1</PackageReleaseNotes>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -35,7 +35,7 @@

<ItemGroup>
<ProjectReference Condition=" '$(UseProjectReferences)' == 'true' " Include="..\SadConsole\SadConsole.csproj" />
<PackageReference Condition=" '$(UseProjectReferences)' != 'true' " Include="SadConsole" Version="9.2.0" />
<PackageReference Condition=" '$(UseProjectReferences)' != 'true' " Include="SadConsole" Version="9.2.1" />
<PackageReference Include="TheSadRogue.Primitives" Version="1.1.1" />
<PackageReference Include="TheSadRogue.Primitives.SFML" Version="1.0.0" />
<PackageReference Include="SFML.Net" Version="2.5.0" />
Expand Down
6 changes: 3 additions & 3 deletions SadConsole/SadConsole.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFrameworks>netstandard2.1;netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
<AssemblyName>SadConsole</AssemblyName>
<DocumentationFile>SadConsole.xml</DocumentationFile>
<Version>9.2.0</Version>
<Version>9.2.1</Version>
<Version Condition="'$(Configuration)'=='Debug'">$(Version)-debug</Version>
<Authors>Thraka</Authors>
<Company>SadLogic</Company>
Expand All @@ -18,15 +18,15 @@
<RepositoryUrl>https://github.com/SadConsole/SadConsole</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageReadmeFile></PackageReadmeFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>http://sadconsole.com/</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<IncludeSymbols>true</IncludeSymbols>
<IncludeSource>true</IncludeSource>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedAllSources>true</EmbedAllSources>
<PackageTags>roguelike;cli;game;development;console;ansi;ascii;textmode;monogame;sfml;sadconsole</PackageTags>
<PackageReleaseNotes>Lots of changes, including breaking changes. See NuGet or GitHub documentation for more information.</PackageReleaseNotes>
<PackageReleaseNotes>9.2.0 contains lots of changes, including breaking changes. See NuGet or GitHub documentation for more information. 9.2.1 only fixes API documentation</PackageReleaseNotes>
</PropertyGroup>

<!--
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v9.2.1 (01/04/2022)

- Rebuild RELEASE build to fix API documentation generation.

## v9.2.0 (12/30/2021)

### Breaking changes
Expand Down

0 comments on commit 182404d

Please sign in to comment.