Skip to content

Commit

Permalink
🚀Preview Release (v1.0.0-preview.16) (#274)
Browse files Browse the repository at this point in the history
* start work for preview release

* release: updated version to v1.0.0-preview.16

* release: create release notes for version v1.0.0-preview.16

* release: improve release notes

* deps: lock moq version between v4.18 and v4.19 to avoid moq PII issue

* ci: add pr trigger to workflow
  • Loading branch information
CalvinWilkinson authored Aug 9, 2023
1 parent 88efa4b commit e12bd2f
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/add-new--issue-to-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ name: 🤖Add New Issue To Project

on:
issues:
types: opened
types: [opened]
pull_request:
types: [opened]
branches: [main, preview]


jobs:
Expand Down
4 changes: 2 additions & 2 deletions CASL/CASL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
<Nullable>enable</Nullable>

<!--Update this for preview releases-->
<Version>1.0.0-preview.15</Version>
<Version>1.0.0-preview.16</Version>

<!--Update this for preview releases-->
<FileVersion>1.0.0-preview.15</FileVersion>
<FileVersion>1.0.0-preview.16</FileVersion>

<AssemblyVersion>1.0.0</AssemblyVersion>
<ApplicationIcon>casl-logo.ico</ApplicationIcon>
Expand Down
23 changes: 23 additions & 0 deletions ReleaseNotes/PreviewReleases/Release-Notes-v1.0.0-preview.16.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<h1 align="center" style="color: mediumseagreen;font-weight: bold;">
CASL Preview Release Notes - v1.0.0-preview.16
</h1>

<h2 align="center" style="font-weight: bold;">Quick Reminder</h2>

<div align="center">

As with all software, there is always a chance for issues and bugs, especially for preview releases, which is why your input is greatly appreciated. 🙏🏼
</div>

<h2 align="center" style="font-weight: bold;">Dependency Updates 📦</h2>

1. [#272](https://github.com/KinsonDigital/CASL/pull/272) - chore(deps): updated kinsondigital/infrastructure action to v11
2. [#271](https://github.com/KinsonDigital/CASL/pull/271) - chore(deps): updated dependency moq to v4.20.1
3. [#270](https://github.com/KinsonDigital/CASL/pull/270) - chore(deps): updated dependency microsoft.net.test.sdk to v17.7.0
4. [#267](https://github.com/KinsonDigital/CASL/pull/267) - chore(deps): updated dependency system.io.abstractions to v19.2.51

<h2 align="center" style="font-weight: bold;">Other 🪧</h2>

1. [#265](https://github.com/KinsonDigital/CASL/issues/265) - Moved images and release notes
2. [#264](https://github.com/KinsonDigital/CASL/issues/264) - Adjusted release workflow input
3. [#109](https://github.com/KinsonDigital/CASL/issues/109) - Refactored unit test assertions
2 changes: 1 addition & 1 deletion Testing/CASLTests/CASLTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.0" />
<PackageReference Include="Moq" Version="4.20.1" />
<PackageReference Include="Moq" Version="[4.18.4,4.19]" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down

0 comments on commit e12bd2f

Please sign in to comment.