Skip to content

Commit 1f47691

Browse files
authored
Merge pull request #490 from jaypatrick/auto-version-bump-0.23.1
chore: bump version to 0.23.1
2 parents de5574c + 8ac0447 commit 1f47691

5 files changed

Lines changed: 13 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2828
- Improve Deno-native architecture by reducing npm dependencies where JSR alternatives are available
2929
- Replace `console.*` calls in `EventEmitter`, `AnalyticsService`, and `CloudflareQueueProvider` with `IBasicLogger` dependency injection, defaulting to `silentLogger` for backward compatibility
3030

31+
32+
## [0.23.1] - 2026-02-22
33+
34+
### Added### Fixed
35+
36+
- correct malformed ### Added section header in CHANGELOG.md [0.23.0]
37+
- remove double blank lines in CHANGELOG.md to pass deno fmt check
38+
39+
3140
## [0.23.0] - 2026-02-22
3241

3342
### Added

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jk-com/adblock-compiler",
3-
"version": "0.23.0",
3+
"version": "0.23.1",
44
"exports": "./src/index.ts",
55
"nodeModulesDir": "auto",
66
"publish": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "adblock-compiler",
3-
"version": "0.23.0",
3+
"version": "0.23.1",
44
"description": "Compiler-as-a-Service for adblock filter lists",
55
"type": "module",
66
"scripts": {

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Package version - should match deno.json
88
* Updated automatically by version bump scripts.
99
*/
10-
export const VERSION = '0.23.0';
10+
export const VERSION = '0.23.1';
1111

1212
/**
1313
* Package name as published to JSR

wrangler.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ tag = "v1"
6666
# IMPORTANT: This version should match the VERSION constant in src/version.ts (single source of truth)
6767
# To update: change VERSION in src/version.ts, then run `deno task version:sync` to propagate changes
6868
# The worker will fall back to src/version.ts if this is not set
69-
COMPILER_VERSION = "0.23.0"
69+
COMPILER_VERSION = "0.23.1"
7070
# TURNSTILE_SITE_KEY, ADMIN_KEY, etc. are loaded from .env files via .envrc
7171
# For local dev: managed by .env.development and .env.local
7272
# For production: managed via Cloudflare secrets (wrangler secret put ADMIN_KEY)

0 commit comments

Comments
 (0)