diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index d215737..f43c2a9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -32,10 +32,10 @@ jobs: - name: Setup pnpm uses: pnpm/action-setup@v4 with: - version: 9 + version: 10.11.0 - name: Install dependencies - run: pnpm install + run: pnpm install --frozen-lockfile - name: Build run: pnpm build @@ -52,13 +52,13 @@ jobs: run: npx release-it --preRelease=beta --ci - name: Publish Release (main branch) - if: github.ref == 'refs/heads/main' + if: github.ref == 'refs/heads/main' && !contains(github.event.head_commit.message, '[skip ci]') env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: npx release-it --ci - name: Sync main to develop - if: github.ref == 'refs/heads/main' + if: github.ref == 'refs/heads/main' && !contains(github.event.head_commit.message, '[skip ci]') run: | git fetch origin develop git checkout develop diff --git a/CHANGELOG.md b/CHANGELOG.md index 1363160..ab53707 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [1.5.2-beta.0](https://github.com/wireweave/language-data/compare/v1.5.1...v1.5.2-beta.0) (2026-03-15) + +### Documentation + +* **readme:** fix project reference name ([21d435f](https://github.com/wireweave/language-data/commit/21d435fc07263beafdcbd64692bcc17891352c14)) + ## [1.5.1](https://github.com/wireweave/language-data/compare/v1.5.1-beta.2...v1.5.1) (2026-03-09) ## [1.5.1-beta.2](https://github.com/wireweave/language-data/compare/v1.5.1-beta.1...v1.5.1-beta.2) (2026-03-09) diff --git a/README.md b/README.md index f263010..b5ee3e0 100644 --- a/README.md +++ b/README.md @@ -176,7 +176,7 @@ type ComponentCategory = - **[@wireweave/playground](https://github.com/wireweave/playground)** - Monaco Editor integration - **[wireweave-vscode](https://github.com/wireweave/vscode-extension)** - VS Code extension -- **[mcp-dashboard](https://wireweave.org)** - CodeMirror integration +- **[dashboard](https://wireweave.org)** - CodeMirror integration ## License diff --git a/package.json b/package.json index a6b8b42..4687ab4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@wireweave/language-data", - "version": "1.5.1", + "version": "1.5.2-beta.0", "description": "Shared language definitions for Wireweave DSL editors", "type": "module", "main": "dist/index.js",