From 18603654b0daaac051191f77b56717ef4dc735e5 Mon Sep 17 00:00:00 2001 From: PocketMiner82 Date: Tue, 2 Apr 2024 14:29:55 +0200 Subject: [PATCH 1/3] fix: this is not a fix but a test if a fix triggers a changelog entry, just removed unused imports. --- pseudocodeIde/SetClipboardHelper.cs | 4 ---- pseudocodeIde/interpreter/scanner/Scanner.cs | 1 - 2 files changed, 5 deletions(-) diff --git a/pseudocodeIde/SetClipboardHelper.cs b/pseudocodeIde/SetClipboardHelper.cs index e0ce4f3..85bdb30 100644 --- a/pseudocodeIde/SetClipboardHelper.cs +++ b/pseudocodeIde/SetClipboardHelper.cs @@ -1,10 +1,6 @@ using System; -using System.Collections.Generic; using System.Diagnostics; -using System.Linq; -using System.Text; using System.Threading; -using System.Threading.Tasks; using System.Windows.Forms; namespace pseudocode_ide diff --git a/pseudocodeIde/interpreter/scanner/Scanner.cs b/pseudocodeIde/interpreter/scanner/Scanner.cs index ddd1379..538754e 100644 --- a/pseudocodeIde/interpreter/scanner/Scanner.cs +++ b/pseudocodeIde/interpreter/scanner/Scanner.cs @@ -1,7 +1,6 @@ using pseudocodeIde.interpreter.logging; using System; using System.Collections.Generic; -using System.Diagnostics; using static pseudocodeIde.interpreter.TokenType; namespace pseudocodeIde.interpreter From 70d99d3c92272a0560b92fb4c0986af284d0f3a0 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 2 Apr 2024 12:31:05 +0000 Subject: [PATCH 2/3] chore(release): 1.2.5-dev.1 [skip ci] ## [1.2.5-dev.1](https://github.com/PocketMiner82/pseudocode-ide/compare/1.2.4...1.2.5-dev.1) (2024-04-02) ### Bug Fixes * this is not a fix but a test if a fix triggers a changelog entry, just removed unused imports. ([1860365](https://github.com/PocketMiner82/pseudocode-ide/commit/18603654b0daaac051191f77b56717ef4dc735e5)) --- AutoUpdater.xml | 2 +- CHANGELOG.md | 7 +++++++ SolutionInfo.cs | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/AutoUpdater.xml b/AutoUpdater.xml index d79900b..a22d38a 100644 --- a/AutoUpdater.xml +++ b/AutoUpdater.xml @@ -1,6 +1,6 @@ - 1.2.4 + 1.2.5 https://github.com/PocketMiner82/pseudocode-ide/releases/latest/download/pseudocode-ide.zip https://github.com/PocketMiner82/pseudocode-ide/releases false diff --git a/CHANGELOG.md b/CHANGELOG.md index a75fcd5..be88a18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [1.2.5-dev.1](https://github.com/PocketMiner82/pseudocode-ide/compare/1.2.4...1.2.5-dev.1) (2024-04-02) + + +### Bug Fixes + +* this is not a fix but a test if a fix triggers a changelog entry, just removed unused imports. ([1860365](https://github.com/PocketMiner82/pseudocode-ide/commit/18603654b0daaac051191f77b56717ef4dc735e5)) + ## [1.2.4](https://github.com/PocketMiner82/pseudocode-ide/compare/1.2.3...1.2.4) (2024-04-02) ## [1.2.4-dev.5](https://github.com/PocketMiner82/pseudocode-ide/compare/1.2.4-dev.4...1.2.4-dev.5) (2024-04-02) diff --git a/SolutionInfo.cs b/SolutionInfo.cs index 06620dd..58b32fa 100644 --- a/SolutionInfo.cs +++ b/SolutionInfo.cs @@ -1,3 +1,3 @@ using System.Reflection; -[assembly: AssemblyVersion("1.2.4")] \ No newline at end of file +[assembly: AssemblyVersion("1.2.5")] \ No newline at end of file From d5ac817f6f7ad0731635724662f010270af3894b Mon Sep 17 00:00:00 2001 From: PocketMiner82 <73847326+PocketMiner82@users.noreply.github.com> Date: Tue, 2 Apr 2024 14:41:51 +0200 Subject: [PATCH 3/3] ci: add branches to pull request config --- .github/workflows/pull_request.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index f9ed2ef..2762f99 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -2,6 +2,7 @@ name: Build app on: workflow_dispatch: pull_request: + branches: [ main, dev ] jobs: