Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/packages/pptxdiff-brew/package.json
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
4 changes: 2 additions & 2 deletions src/packages/pptxdiff-chocolatey/pptxdiff.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>pptxdiff</id>
<version>0.7.0</version>
<version>0.8.0</version>
<packageSourceUrl>https://github.com/sugatoray/pptxdiff/tree/master/src/packages/pptxdiff-chocolatey</packageSourceUrl>
<owners>sugatoray</owners>

Expand Down Expand Up @@ -61,7 +61,7 @@ See the project README (https://github.com/sugatoray/pptxdiff) and documentation
<releaseNotes>https://github.com/sugatoray/pptxdiff/blob/master/CHANGELOG.md</releaseNotes>

<dependencies>
<dependency id="nodejs" version="18.0.0" />
<dependency id="nodejs" version="[18.0.0,)" />
</dependencies>
</metadata>
<files>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading