Skip to content

Commit

Permalink
🚀Preview Release (v1.0.0-preview.3) (#25)
Browse files Browse the repository at this point in the history
* release: update version to v1.0.0-preview.3

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

* release: fix release notes file name

* config: update kd-admin tool from version v1.0.0-preview.3 to v1.0.0-preview.4

* config: add word replacements to prepare release config

* chore!: prevent auto adding of the colon char to the text prop

* release: improve release notes
  • Loading branch information
CalvinWilkinson committed Jul 18, 2024
1 parent d34998c commit 3f1160c
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 7 deletions.
4 changes: 2 additions & 2 deletions KdGui/KdGui.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
<RootNamespace>KdGui</RootNamespace>

<!--Update this for production and preview releases-->
<Version>1.0.0-preview.2</Version>
<Version>1.0.0-preview.3</Version>

<!--Update this for production and preview releases-->
<FileVersion>1.0.0-preview.2</FileVersion>
<FileVersion>1.0.0-preview.3</FileVersion>

<!--
DO NOT UPDATE THIS FOR PREVIEW RELEASES!!
Expand Down
2 changes: 1 addition & 1 deletion KdGui/UpDown.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public UpDown(IImGuiInvoker imGuiInvoker, IPushReactable renderReactable)
public string Text
{
get => this.text;
set => this.text = value.EndsWith(':') ? value : $"{value}:";
set => this.text = value;
}

/// <inheritdoc/>
Expand Down
29 changes: 29 additions & 0 deletions ReleaseNotes/PreviewReleases/Release-Notes-v1.0.0-preview.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<h1 align="center" style="color: mediumseagreen;font-weight: bold;">
KdGui Preview Release Notes - v1.0.0-preview.3
</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, so your input is greatly appreciated. 🙏🏼
</div>

<h2 align="center" style="font-weight: bold;">Enhancements 💎</h2>

1. [#21](https://github.com/KinsonDigital/KdGui/issues/21) - Improved the positioning and sizing of `ControlGroup` controls.
2. [#17](https://github.com/KinsonDigital/KdGui/issues/17) - Enhanced the `CheckBox.IsChecked` property by adding a property setter to allow users to programmatically set the check box state.
3. [#16](https://github.com/KinsonDigital/KdGui/issues/16) - Removed the colon from text for controls to give users more control.

<h2 align="center" style="font-weight: bold;">Breaking Changes 🧨</h2>

1. [#16](https://github.com/KinsonDigital/KdGui/issues/16) - Removed the colon from the default `Label` property value for the `ComboBox` control.
2. [#16](https://github.com/KinsonDigital/KdGui/issues/16) - Changed the `ComboBox` label from being automatically prefixed with a colon.
3. [#16](https://github.com/KinsonDigital/KdGui/issues/16) - Removed the colon from the default `Text` property value for the `ComboBox` control.
4. [#16](https://github.com/KinsonDigital/KdGui/issues/16) - Changed the `UpDown` text from being automatically prefixed with a colon.

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

1. [#18](https://github.com/KinsonDigital/KdGui/pull/18) - Updated dependency _**xunit**_ to _**v2.9.0**_
2. [#18](https://github.com/KinsonDigital/KdGui/pull/18) - Updated dependency _**xunit.runner.visualstudio**_ to _**v2.9.0**_
3. [#19](https://github.com/KinsonDigital/KdGui/pull/19) - Updated dependency _**FluentAssertions.Analyzers**_ to _**v0.33.0**_
2 changes: 1 addition & 1 deletion dev-tools/bin/kd-admin
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh
# generated by deno install
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" "$@"
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" "$@"
2 changes: 1 addition & 1 deletion dev-tools/bin/kd-admin.cmd
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
% generated by deno install %
@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" %*
@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" %*
3 changes: 2 additions & 1 deletion dev-tools/prev-gen-release-notes-settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
"Upgrade": "Upgraded",
"Create": "Created",
"Refactor": "Refactored",
"Removed": "Removed",
"Remove": "Removed",
"Enhance": "Enhanced",
"Implement": "Implemented",
"Move": "Moved",
"Change": "Changed",
Expand Down
3 changes: 2 additions & 1 deletion dev-tools/prod-gen-release-notes-settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
"Upgrade": "Upgraded",
"Create": "Created",
"Refactor": "Refactored",
"Removed": "Removed",
"Remove": "Removed",
"Enhance": "Enhanced",
"Implement": "Implemented",
"Move": "Moved",
"Change": "Changed",
Expand Down

0 comments on commit 3f1160c

Please sign in to comment.