Skip to content

Commit b27577e

Browse files
author
cdavis-code
committed
chore(obs_cli): release v5.7.0+2 - fix stale version constant and CI compatibility
1 parent a526f8c commit b27577e

3 files changed

Lines changed: 11 additions & 2 deletions

File tree

packages/obs_cli/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 5.7.0+2
4+
5+
* **Bug Fixes**
6+
* Fixed stale `packageVersion` constant in `obs version` command (was reporting `5.2.3+2`, now correctly reports `5.7.0+2`)
7+
8+
* **CI/CD**
9+
* Replaced deprecated `macos-13` GitHub Actions runner with `macos-15-intel` for Homebrew release workflow
10+
* Removed bash line continuations from `dart compile` command for PowerShell compatibility on Windows runners
11+
312
## 5.7.0+1
413

514
* **Distribution**

packages/obs_cli/lib/src/cmd/obs_version_command.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import 'package:args/command_runner.dart';
33
/// Display the package name and version
44
class ObsVersionCommand extends Command<void> {
55
static const packageName = 'obs_cli';
6-
static const packageVersion = '5.2.3+2';
6+
static const packageVersion = '5.7.0+2';
77

88
@override
99
String get description => 'Display the package name and version';

packages/obs_cli/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: obs_cli
2-
version: 5.7.0+1
2+
version: 5.7.0+2
33
description: A CLI tool and MCP server for controlling OBS Studio via the obs-websocket protocol.
44
homepage: https://github.com/cdavis-code/obs_websocket_workspace
55
repository: https://github.com/cdavis-code/obs_websocket_workspace/tree/main/packages/obs_cli

0 commit comments

Comments
 (0)