diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b62d8f2..129d1b2 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.8.0" + ".": "1.9.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 32061eb..8852447 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [1.9.0](https://github.com/runreal/cli/compare/v1.8.0...v1.9.0) (2025-06-02) + + +### Bug Fixes + +* removed msbuild specific target string ([#84](https://github.com/runreal/cli/issues/84)) ([2562957](https://github.com/runreal/cli/commit/25629573037e7961f9a97734a512da4610d5be5f)) + + +### Miscellaneous Chores + +* release 1.9.0 ([d6db301](https://github.com/runreal/cli/commit/d6db30130294d286f18e31536b7dfb2e9ab591a3)) + ## [1.8.0](https://github.com/runreal/cli/compare/v1.7.0...v1.8.0) (2025-05-23) diff --git a/deno.jsonc b/deno.jsonc index d3d95e4..b466086 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.8.0", + "version": "1.9.0", "description": "The open source Unreal Engine toolkit", "license": "MIT", "tasks": { diff --git a/src/version.ts b/src/version.ts index ea6cbee..442ca2a 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,3 +1,3 @@ // x-release-please-start-version -export const VERSION = '1.8.0' +export const VERSION = '1.9.0' // x-release-please-end