Skip to content

Commit eda5cef

Browse files
committed
release: v4.0.1 (npm + plugin/marketplace); make phase8 version assertion 4.x-agnostic
1 parent f992848 commit eda5cef

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"ref": "main"
1717
},
1818
"description": "Official zaileys skill suite — an orchestrator (assist) plus focused scaffold, debug, and review skills for building WhatsApp bots with best practices.",
19-
"version": "4.0.0",
19+
"version": "4.0.1",
2020
"author": { "name": "zeative" },
2121
"homepage": "https://zeative.github.io/zaileys/",
2222
"repository": "https://github.com/zeative/zaileys",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "zaileys",
33
"description": "Zaileys - Simplified WhatsApp Node.js TypeScript/JavaScript API",
4-
"version": "4.0.0",
4+
"version": "4.0.1",
55
"license": "MIT",
66
"type": "module",
77
"main": "./dist/index.cjs",

plugins/zaileys-official/.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "zaileys-official",
33
"description": "Official zaileys skill suite — an orchestrator (assist) plus focused scaffold, debug, and review skills for building WhatsApp bots with best practices.",
4-
"version": "4.0.0",
4+
"version": "4.0.1",
55
"author": {
66
"name": "zeative",
77
"email": "zaadevofc@gmail.com"

tests/integration/phase8-sc-matrix.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ describe('Phase 8 SC#4 — README + examples + MIGRATION', () => {
9696
})
9797
})
9898

99-
describe('Phase 8 SC#5 — Nextra docs + governance docs + version 4.0.0', () => {
99+
describe('Phase 8 SC#5 — Nextra docs + governance docs + version 4.x', () => {
100100
it('nextra docs site and docs scripts exist', () => {
101101
expect(has('docs/next.config.mjs')).toBe(true)
102102
expect(has('docs/content/index.mdx')).toBe(true)
@@ -114,9 +114,9 @@ describe('Phase 8 SC#5 — Nextra docs + governance docs + version 4.0.0', () =>
114114
expect(read('CHANGELOG.md')).toMatch(/4\.0\.0/)
115115
})
116116

117-
it('package.json declares version 4.0.0', () => {
117+
it('package.json declares a 4.x version', () => {
118118
const pkg = JSON.parse(read('package.json'))
119-
expect(pkg.version).toBe('4.0.0')
119+
expect(pkg.version).toMatch(/^4\./)
120120
})
121121
})
122122

0 commit comments

Comments
 (0)