Skip to content

Commit 58f7b38

Browse files
author
Calvin Wilkinson
authored
🚀Preview Release (v1.0.0-preview.20) (#360)
* release: update version to v1.0.0-preview.20 * release: create release notes for version v1.0.0-preview.20 * ci: add head branch checks to workflow job * release: update and improve release notes
1 parent 41e3c9b commit 58f7b38

5 files changed

Lines changed: 34 additions & 5 deletions

File tree

.github/workflows/sync-pr-to-issue.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ jobs:
1818
name: Start Initial Sync
1919
if: |
2020
github.event_name == 'pull_request_target' &&
21-
!startsWith(github.head_ref, 'renovate/')
21+
!startsWith(github.head_ref, 'renovate/') &&
22+
github.head_ref != 'prev-release' &&
23+
github.head_ref != 'prod-release'
2224
uses: KinsonDigital/Infrastructure/.github/workflows/initial-manual-sync.yml@v13.6.3
2325
with:
2426
issue-or-pr-number: ${{ github.event.pull_request.number }}

CASL/CASL.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
<Nullable>enable</Nullable>
99

1010
<!--Update this for preview releases-->
11-
<Version>1.0.0-preview.19</Version>
11+
<Version>1.0.0-preview.20</Version>
1212

1313
<!--Update this for preview releases-->
14-
<FileVersion>1.0.0-preview.19</FileVersion>
14+
<FileVersion>1.0.0-preview.20</FileVersion>
1515

1616
<AssemblyVersion>1.0.0</AssemblyVersion>
1717
<ApplicationIcon>casl-logo.ico</ApplicationIcon>
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<h1 align="center" style="color: mediumseagreen;font-weight: bold;">
2+
CASL Preview Release Notes - v1.0.0-preview.20
3+
</h1>
4+
5+
<h2 align="center" style="font-weight: bold;">Quick Reminder</h2>
6+
7+
8+
<div align="center">
9+
10+
As with all software, there is always a chance for issues and bugs, especially for preview releases, so your input is greatly appreciated. 🙏🏼
11+
</div>
12+
13+
<h2 align="center" style="font-weight: bold;">Enhancements 💎</h2>
14+
15+
1. [#358](https://github.com/KinsonDigital/CASL/issues/358) - Improved how the audio path is consumed based on operating system.
16+
17+
<h2 align="center" style="font-weight: bold;">Dependency Updates 📦</h2>
18+
19+
1. [#355](https://github.com/KinsonDigital/CASL/pull/355) - Updated dependency _**system.io.abstractions**_ to _**v21.0.29**_.
20+
2. [#354](https://github.com/KinsonDigital/CASL/pull/354) - Updated dependency _**microsoft.net.test.sdk**_ to _**v17.11.0**_.
21+
3. [#353](https://github.com/KinsonDigital/CASL/pull/353) - Updated dependency _**simpleinjector**_ to _**v5.5.0**_.
22+
4. [#352](https://github.com/KinsonDigital/CASL/pull/352) - Updated dependency _**xunit**_ _**v2.9.0**_.
23+
4. [#352](https://github.com/KinsonDigital/CASL/pull/352) - Updated dependency _**xunit.runner.visualstudio**_ _**v2.8.2**_.
24+
25+
<h2 align="center" style="font-weight: bold;">Other 🪧</h2>
26+
27+
1. [#356](https://github.com/KinsonDigital/CASL/issues/356) - Set up **KD-Admin** development tool.

dev-tools/bin/kd-admin

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh
22
# generated by deno install
3-
deno "run" "--allow-read" "--allow-write" "--allow-net" "--allow-env" "--allow-run" "--no-config" "https://raw.githubusercontent.com/KinsonDigital/kd-admin/v1.0.0-preview.3/src/main.ts" "$@"
3+
deno "run" "--allow-read" "--allow-write" "--allow-net" "--allow-env" "--allow-run" "--no-config" "https://raw.githubusercontent.com/KinsonDigital/kd-admin/v1.0.0-preview.4/src/main.ts" "$@"

dev-tools/bin/kd-admin.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
% generated by deno install %
2-
@deno "run" "--allow-read" "--allow-write" "--allow-net" "--allow-env" "--allow-run" "--no-config" "https://raw.githubusercontent.com/KinsonDigital/kd-admin/v1.0.0-preview.3/src/main.ts" %*
2+
@deno "run" "--allow-read" "--allow-write" "--allow-net" "--allow-env" "--allow-run" "--no-config" "https://raw.githubusercontent.com/KinsonDigital/kd-admin/v1.0.0-preview.4/src/main.ts" %*

0 commit comments

Comments
 (0)