Skip to content

Commit

Permalink
Update release docs
Browse files Browse the repository at this point in the history
  • Loading branch information
mrpmorris committed Sep 22, 2023
1 parent 0ee8c94 commit 2100413
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions Docs/releases.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# Releases

## New in 1.8
* Fix: When `ImplicitUsings` is disabled for a project, the attribute for a MixIn won't compile [Fixes #36](https://github.com/mrpmorris/Morris.Moxy/issues/36).
* When `ImplicitUsings` is disabled for a project, the attribute for a MixIn won't compile [Fixes #36](https://github.com/mrpmorris/Morris.Moxy/issues/36).
* No need to copy the target class's `using` clauses into the generated code [Fixes #38](https://github.com/mrpmorris/Morris.Moxy/issues/38).
* typeof() variables should have Name and FullName properties [Fixes #40](https://github.com/mrpmorris/Morris.Moxy/issues/40).

## New in 1.7
* Fix: Moxy stops generating code when @moxy header is malformed [Fixes #33](https://github.com/mrpmorris/Morris.Moxy/issues/33)
* Moxy stops generating code when @moxy header is malformed [Fixes #33](https://github.com/mrpmorris/Morris.Moxy/issues/33)

## New in 1.6
* Honour Roslyn `ProductionContext.Cancellation.IsCancellationRequested` to improve performance
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.8.0-Beta2 : UPDATED THE VERSION NUMBER IN THE PROJECT *AND* BATCH FILE? ****
@echo **** 1.8.0 : UPDATED THE VERSION NUMBER IN THE PROJECT *AND* BATCH FILE? ****
pause

cls
@call BuildAndTest.bat

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

set /p ShouldPublish=Publish 1.8.0-Beta2 [yes]?
set /p ShouldPublish=Publish 1.8.0 [yes]?
@if "%ShouldPublish%" == "yes" (
@echo PUBLISHING
dotnet nuget push .\Source\Lib\Morris.Moxy\bin\Release\Morris.Moxy.1.8.0-Beta2.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.8.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.8.0-Beta2</Version>
<Version>1.8.0</Version>

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

0 comments on commit 2100413

Please sign in to comment.