From 6b960d0084498caffe34aa5ee5c37cc22701f44f Mon Sep 17 00:00:00 2001 From: Sugato Ray Date: Sun, 9 Aug 2026 20:36:22 -0400 Subject: [PATCH 1/2] chore(brew): update the homebrew package for pptxdiff version to v0.8.0 - bundles npm::pptxdiff v0.8.0 --- src/packages/pptxdiff-brew/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/packages/pptxdiff-brew/package.json b/src/packages/pptxdiff-brew/package.json index d523378..627c12b 100644 --- a/src/packages/pptxdiff-brew/package.json +++ b/src/packages/pptxdiff-brew/package.json @@ -1,6 +1,6 @@ { "name": "pptxdiff-brew", - "version": "0.7.0-20260809", + "version": "0.8.0", "description": "Homebrew formula packaging for pptxdiff (Formula/pptxdiff.rb) and its version-bump sync tooling (sync-tap.mjs) — not an npm package itself, just a place to run its Red/Green tests.", "license": "Apache-2.0", "private": true, From d8e9ba8859a591498ad5a0130eade312c2e915ae Mon Sep 17 00:00:00 2001 From: Sugato Ray Date: Sun, 9 Aug 2026 20:47:13 -0400 Subject: [PATCH 2/2] chore(choco): update the chocolatey package for pptxdiff version to v0.8.0 - bundles npm::pptxdiff v0.8.0 - add nodejs>=18.0.0 as a dependency in nuspec --- src/packages/pptxdiff-chocolatey/pptxdiff.nuspec | 4 ++-- src/packages/pptxdiff-chocolatey/tools/chocolateyinstall.ps1 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/packages/pptxdiff-chocolatey/pptxdiff.nuspec b/src/packages/pptxdiff-chocolatey/pptxdiff.nuspec index 0682981..2bd0ed0 100644 --- a/src/packages/pptxdiff-chocolatey/pptxdiff.nuspec +++ b/src/packages/pptxdiff-chocolatey/pptxdiff.nuspec @@ -2,7 +2,7 @@ pptxdiff - 0.7.0 + 0.8.0 https://github.com/sugatoray/pptxdiff/tree/master/src/packages/pptxdiff-chocolatey sugatoray @@ -61,7 +61,7 @@ See the project README (https://github.com/sugatoray/pptxdiff) and documentation https://github.com/sugatoray/pptxdiff/blob/master/CHANGELOG.md - + diff --git a/src/packages/pptxdiff-chocolatey/tools/chocolateyinstall.ps1 b/src/packages/pptxdiff-chocolatey/tools/chocolateyinstall.ps1 index c64e1fc..fa053d6 100644 --- a/src/packages/pptxdiff-chocolatey/tools/chocolateyinstall.ps1 +++ b/src/packages/pptxdiff-chocolatey/tools/chocolateyinstall.ps1 @@ -5,7 +5,7 @@ $npmPackageVersion = $env:chocolateyPackageVersion if ([string]::IsNullOrWhiteSpace($npmPackageVersion)) { # Fallback for manual `choco pack`/`choco install -s .` runs where Chocolatey # doesn't set the package-version environment variable (e.g. local testing). - $npmPackageVersion = '0.7.0' + $npmPackageVersion = '0.8.0' } $npmCmd = Get-Command npm -ErrorAction SilentlyContinue