Fix version mismatch in configuration files (0.7.24 -> 0.8.0)#168
Merged
jaypatrick merged 2 commits intomasterfrom Jan 15, 2026
Merged
Fix version mismatch in configuration files (0.7.24 -> 0.8.0)#168jaypatrick merged 2 commits intomasterfrom
jaypatrick merged 2 commits intomasterfrom
Conversation
Aligns COMPILER_VERSION across all configuration files with deno.json and package.json which are already at 0.8.0: - wrangler.toml - docker-compose.yml - examples/cloudflare-worker/wrangler.toml - examples/cloudflare-worker/package.json
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ✅ Deployment successful! View logs |
adblock-compiler | 8602ca0 | Jan 15 2026, 02:30 AM |
|
Version bumped: |
There was a problem hiding this comment.
Pull request overview
This PR updates the version number across multiple configuration files to maintain consistency. However, the PR title/description states the version should be updated to 0.8.0, but the actual changes update to 0.8.1. The CHANGELOG shows 0.8.0 was released on 2025-01-14 with an [Unreleased] section containing features that would justify a 0.8.1 release.
Changes:
- Updated COMPILER_VERSION environment variable in wrangler.toml, docker-compose.yml, and example configurations to
0.8.1 - Updated version in package.json, deno.json, and src/version.ts to
0.8.1
Reviewed changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| wrangler.toml | Updated COMPILER_VERSION from 0.7.24 to 0.8.1 |
| src/version.ts | Updated VERSION constant from 0.8.0 to 0.8.1 |
| package.json | Updated version from 0.8.0 to 0.8.1 |
| examples/cloudflare-worker/wrangler.toml | Updated COMPILER_VERSION from 0.7.24 to 0.8.1 |
| examples/cloudflare-worker/package.json | Updated version from 0.7.24 to 0.8.1 |
| docker-compose.yml | Updated COMPILER_VERSION from 0.7.24 to 0.8.1 |
| deno.json | Updated version from 0.8.0 to 0.8.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Aligns COMPILER_VERSION across all configuration files with deno.json and package.json which are already at 0.8.0: