diff --git a/Cargo.lock b/Cargo.lock index eedf971..8b0e86d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1926,7 +1926,7 @@ dependencies = [ [[package]] name = "operator" -version = "0.1.21" +version = "0.1.22" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 560eb20..d936bde 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "operator" -version = "0.1.21" +version = "0.1.22" edition = "2021" description = "Multi-agent orchestration dashboard for gbqr.us" authors = ["gbqr.us"] diff --git a/VERSION b/VERSION index 7906299..7e72641 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.21 +0.1.22 diff --git a/azure-pipelines.yml b/azure-pipelines.yml index a05ba79..228f0b6 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -16,13 +16,11 @@ pool: vmImage: windows-latest steps: - - task: AzureCLI@2 + - task: PowerShell@2 displayName: Download unsigned binary from blob inputs: - azureSubscription: signing-service-connection - scriptType: ps - scriptLocation: inlineScript - inlineScript: | + targetType: inline + script: | az storage blob download ` --connection-string "$(AZURE_STORAGE_CONNECTION_STRING)" ` --container-name signing-stage ` @@ -44,13 +42,11 @@ steps: TimestampRfc3161: http://timestamp.acs.microsoft.com TimestampDigest: SHA256 - - task: AzureCLI@2 + - task: PowerShell@2 displayName: Upload signed binary to blob inputs: - azureSubscription: signing-service-connection - scriptType: ps - scriptLocation: inlineScript - inlineScript: | + targetType: inline + script: | az storage blob upload ` --connection-string "$(AZURE_STORAGE_CONNECTION_STRING)" ` --container-name signing-stage ` diff --git a/backstage-server/package.json b/backstage-server/package.json index 665a531..5955917 100644 --- a/backstage-server/package.json +++ b/backstage-server/package.json @@ -1,6 +1,6 @@ { "name": "operator-backstage", - "version": "0.1.21", + "version": "0.1.22", "author": { "name": "Samuel Volin", "email": "untra.sam@gmail.com", diff --git a/docs/_config.yml b/docs/_config.yml index 7aec3bc..df58cc1 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -42,7 +42,7 @@ collections_dir: . # Permalink structure permalink: pretty -version: 0.1.21 +version: 0.1.22 # Google Analytics ga_tag: G-5JZPJWWT7S # Replace with actual GA4 measurement ID from analytics.google.com diff --git a/opr8r/Cargo.toml b/opr8r/Cargo.toml index e96ec2c..4187e9c 100644 --- a/opr8r/Cargo.toml +++ b/opr8r/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "opr8r" -version = "0.1.21" +version = "0.1.22" edition = "2021" description = "Minimal CLI wrapper for LLM commands in multi-step ticket workflows" license = "MIT" diff --git a/vscode-extension/package.json b/vscode-extension/package.json index dd37373..d4adf46 100644 --- a/vscode-extension/package.json +++ b/vscode-extension/package.json @@ -2,7 +2,7 @@ "name": "operator-terminals", "displayName": "Operator! Terminals for vscode", "description": "VS Code terminal integration for Operator! multi-agent orchestration", - "version": "0.1.21", + "version": "0.1.22", "publisher": "untra", "author": { "name": "Samuel Volin", diff --git a/vscode-extension/src/webhook-server.ts b/vscode-extension/src/webhook-server.ts index 123204e..cb08567 100644 --- a/vscode-extension/src/webhook-server.ts +++ b/vscode-extension/src/webhook-server.ts @@ -22,7 +22,7 @@ import { SessionInfo, } from './types'; -const VERSION = '0.1.21'; +const VERSION = '0.1.22'; /** * HTTP server for operator <-> extension communication