Skip to content

Commit

Permalink
chore: release 0.14.0 (#7008)
Browse files Browse the repository at this point in the history
  • Loading branch information
Saul-Mirone authored May 10, 2024
1 parent 8ecb161 commit 2314f10
Show file tree
Hide file tree
Showing 11 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.13.0",
"version": "0.14.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.13.0",
"version": "0.14.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.13.0",
"version": "0.14.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.13.0",
"version": "0.14.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.13.0",
"version": "0.14.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.13.0",
"version": "0.14.0",
"description": "A micro editor.",
"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.13.0",
"version": "0.14.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.13.0",
"version": "0.14.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.13.0",
"version": "0.14.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.13.0",
"version": "0.14.0",
"description": "Prebuilt BlockSuite editors and opt-in additional UI components.",
"type": "module",
"repository": "toeverything/blocksuite",
Expand Down
4 changes: 2 additions & 2 deletions scripts/replace-canary-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ packages=(
replace() {
mv package-modified.json package.json

CURRENT_VERSION="0.13.0"
CURRENT_VERSION="0.14.0"
IFS='.' read -r MAJOR MINOR PATCH <<< "$CURRENT_VERSION"
MINOR=$((MINOR + 1))
VERSION="$MAJOR.$MINOR.$PATCH"
Expand All @@ -39,4 +39,4 @@ do
else
cd ../../
fi
done
done

0 comments on commit 2314f10

Please sign in to comment.