Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading