Skip to content

Commit

Permalink
v0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
doodlewind committed Mar 19, 2024
1 parent b48b0e2 commit b5a0430
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blocksuite",
"version": "0.12.0",
"version": "0.13.0",
"//": "ALL_PACKAGES",
"workspaces": [
"packages/framework/block-std",
Expand Down
2 changes: 1 addition & 1 deletion packages/blocks/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blocksuite/blocks",
"version": "0.12.0",
"version": "0.13.0",
"description": "Default BlockSuite editable blocks.",
"type": "module",
"repository": "toeverything/blocksuite",
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blocksuite/docs",
"version": "0.12.0",
"version": "0.13.0",
"description": "BlockSuite documentation",
"private": true,
"keywords": [],
Expand Down
2 changes: 1 addition & 1 deletion packages/framework/block-std/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blocksuite/block-std",
"version": "0.12.0",
"version": "0.13.0",
"description": "Std for blocksuite blocks",
"type": "module",
"repository": "toeverything/blocksuite",
Expand Down
2 changes: 1 addition & 1 deletion packages/framework/global/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blocksuite/global",
"version": "0.12.0",
"version": "0.13.0",
"types": "./index.d.ts",
"type": "module",
"repository": "toeverything/blocksuite",
Expand Down
2 changes: 1 addition & 1 deletion packages/framework/inline/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blocksuite/inline",
"version": "0.12.0",
"version": "0.13.0",
"description": "A micro editor.",
"type": "module",
"repository": "toeverything/blocksuite",
Expand Down
2 changes: 1 addition & 1 deletion packages/framework/lit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blocksuite/lit",
"version": "0.12.0",
"version": "0.13.0",
"description": "Lit renderer for blocksuite store",
"type": "module",
"repository": "toeverything/blocksuite",
Expand Down
2 changes: 1 addition & 1 deletion packages/framework/store/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blocksuite/store",
"version": "0.12.0",
"version": "0.13.0",
"description": "BlockSuite data store built for general purpose state management.",
"type": "module",
"repository": "toeverything/blocksuite",
Expand Down
2 changes: 1 addition & 1 deletion packages/framework/sync/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blocksuite/sync",
"version": "0.12.0",
"version": "0.13.0",
"description": "BlockSuite data synchronization engine abstraction and implementation.",
"type": "module",
"repository": "toeverything/blocksuite",
Expand Down
2 changes: 1 addition & 1 deletion packages/playground/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@blocksuite/playground",
"private": true,
"version": "0.12.0",
"version": "0.13.0",
"type": "module",
"repository": "toeverything/blocksuite",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/presets/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blocksuite/presets",
"version": "0.12.0",
"version": "0.13.0",
"description": "Prebuilt BlockSuite editors and opt-in additional UI components.",
"type": "module",
"repository": "toeverything/blocksuite",
Expand Down
2 changes: 1 addition & 1 deletion scripts/replace-canary-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ packages=(
replace() {
mv package-modified.json package.json

CURRENT_VERSION="0.12.0"
CURRENT_VERSION="0.13.0"
IFS='.' read -r MAJOR MINOR PATCH <<< "$CURRENT_VERSION"
MINOR=$((MINOR + 1))
VERSION="$MAJOR.$MINOR.$PATCH"
Expand Down

0 comments on commit b5a0430

Please sign in to comment.