Skip to content

Commit

Permalink
Update release notes for 1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
mrpmorris committed Apr 15, 2024
1 parent 10c8f54 commit c758461
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions Docs/releases.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Releases

## New in 1.10
* Add class's DeclaringTypeName and namespace to generated files' filenames [Fixes #45](https://github.com/mrpmorris/Morris.Moxy/issues/45).

## New in 1.9
* Add class's DeclaringTypeName to enable scripts to extend nested classes [Fixes #44](https://github.com/mrpmorris/Morris.Moxy/issues/44).

Expand Down
6 changes: 3 additions & 3 deletions Publish.bat
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
cls
@echo **** 1.9.0 : UPDATED THE VERSION NUMBER IN THE PROJECT *AND* BATCH FILE? ****
@echo **** 1.10.0 : UPDATED THE VERSION NUMBER IN THE PROJECT *AND* BATCH FILE? ****
pause

cls
@call BuildAndTest.bat

@echo ======================

set /p ShouldPublish=Publish 1.9.0 [yes]?
set /p ShouldPublish=Publish 1.10.0 [yes]?
@if "%ShouldPublish%" == "yes" (
@echo PUBLISHING
dotnet nuget push .\Source\Lib\Morris.Moxy\bin\Release\Morris.Moxy.1.9.0.nupkg -k %MORRIS.NUGET.KEY% -s https://api.nuget.org/v3/index.json
dotnet nuget push .\Source\Lib\Morris.Moxy\bin\Release\Morris.Moxy.1.10.0.nupkg -k %MORRIS.NUGET.KEY% -s https://api.nuget.org/v3/index.json
)

2 changes: 1 addition & 1 deletion Source/Lib/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>10</LangVersion>
<Version>1.9.0</Version>
<Version>1.10.0</Version>

<Authors>Peter Morris</Authors>
<Company />
Expand Down

0 comments on commit c758461

Please sign in to comment.