From bdeb1f9caeca9552c7da0e48b3becbc6f32fa8be Mon Sep 17 00:00:00 2001 From: warman <159046867+runreal-warman@users.noreply.github.com> Date: Fri, 23 May 2025 15:37:06 -0700 Subject: [PATCH] chore(main): release 1.8.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ deno.jsonc | 2 +- src/version.ts | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f15cc9f..b62d8f2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.7.0" + ".": "1.8.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index d1b0a48..32061eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.8.0](https://github.com/runreal/cli/compare/v1.7.0...v1.8.0) (2025-05-23) + + +### Features + +* conditional steps in workflow configs ([#82](https://github.com/runreal/cli/issues/82)) ([9054bc8](https://github.com/runreal/cli/commit/9054bc8d5ffbe237f024096adfd5d3302e0d4e48)) +* new commands for local dev ([#80](https://github.com/runreal/cli/issues/80)) ([a448cfa](https://github.com/runreal/cli/commit/a448cfa6ad1e999cbad514a839fe52f5915bb80e)) +* plugin utils ([6c689df](https://github.com/runreal/cli/commit/6c689dfcfe69f3215cc9a759fa6d8bfd135d3005)) + ## [1.7.0](https://github.com/runreal/cli/compare/v1.6.0...v1.7.0) (2025-05-09) diff --git a/deno.jsonc b/deno.jsonc index 86479a1..bbd2d5a 100644 --- a/deno.jsonc +++ b/deno.jsonc @@ -1,7 +1,7 @@ { "$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json", "name": "@runreal/cli", - "version": "1.6.0", + "version": "1.8.0", "description": "The open source Unreal Engine toolkit", "license": "MIT", "tasks": { diff --git a/src/version.ts b/src/version.ts index 2b2af19..ea6cbee 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,3 +1,3 @@ // x-release-please-start-version -export const VERSION = '1.7.0' +export const VERSION = '1.8.0' // x-release-please-end