Skip to content

Commit

Permalink
Bump version to 0.3.0 (#285)
Browse files Browse the repository at this point in the history
Note: this was created with a WIP tool that keeps versions in check
across our rust/python/npm packages, which can be found in the
[paulgb/releaser](#284) branch.
  • Loading branch information
paulgb authored Sep 19, 2024
1 parent 4a92e4a commit f0091aa
Show file tree
Hide file tree
Showing 15 changed files with 198 additions and 441 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/check-ts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,3 @@ jobs:
- name: Check Formatting of doc generator
run: npx prettier --check "**/*.{ts,tsx}"
working-directory: js-pkg/gen-docs/

- name: Check Formatting of scripts
run: npx prettier --check "**/*.{ts,tsx}"
working-directory: scripts/

- name: Check that workspace package versions match
run: npx tsx scripts/set-js-versions.ts
4 changes: 2 additions & 2 deletions crates/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/y-sweet-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "y-sweet-core"
version = "0.2.2"
version = "0.3.0"
edition = "2021"
description = "Sans-IO core of the y-sweet yjs CRDT server."
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions crates/y-sweet/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "y-sweet"
version = "0.2.2"
version = "0.3.0"
edition = "2021"
description = "A standalone Yjs CRDT server with built-in persistence and auth."
license = "MIT"
Expand All @@ -27,7 +27,7 @@ tokio-util = { version = "0.7.11", features = ["rt"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "fmt"] }
url = "2.4.0"
y-sweet-core = { version="0.2.0", path = "../y-sweet-core", features=["sync"] }
y-sweet-core = { version= "0.3.0", path = "../y-sweet-core", features=["sync"] }
yrs = { version = "0.19.1" }
yrs-kvstore = "0.3.0"

Expand Down
4 changes: 2 additions & 2 deletions js-pkg/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"format": "prettier --write \"**/*.{ts,tsx,js,jsx}\"",
"prepublishOnly": "npm run build"
},
"version": "0.2.2",
"version": "0.3.0",
"description": "JS library for building collaboration features with y-sweet.",
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
Expand Down Expand Up @@ -46,7 +46,7 @@
"yjs": "^13.0.0"
},
"dependencies": {
"@y-sweet/sdk": "0.2.2",
"@y-sweet/sdk": "0.3.0",
"y-protocols": "^1.0.5"
}
}
6 changes: 3 additions & 3 deletions js-pkg/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"format": "prettier --write \"**/*.{ts,tsx,js,jsx}\"",
"prepublishOnly": "npm run build"
},
"version": "0.2.2",
"version": "0.3.0",
"description": "React library for building collaboration features with y-sweet.",
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
Expand Down Expand Up @@ -47,8 +47,8 @@
"yjs": "^13.0.0"
},
"dependencies": {
"@y-sweet/client": "0.2.2",
"@y-sweet/sdk": "0.2.2",
"@y-sweet/client": "0.3.0",
"@y-sweet/sdk": "0.3.0",
"y-protocols": "^1.0.5"
}
}
2 changes: 1 addition & 1 deletion js-pkg/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"format": "prettier --write \"**/*.{ts,tsx,js,jsx}\"",
"prepublishOnly": "npm run build"
},
"version": "0.2.2",
"version": "0.3.0",
"description": "Javascript/Typescript backend SDK for building collaboration features with y-sweet.",
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
Expand Down
44 changes: 22 additions & 22 deletions js-pkg/server/package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"name": "y-sweet",
"bin": {
"y-sweet": "./src/run.js"
},
"scripts": {
"postinstall": "node src/install.js",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx}\""
},
"version": "0.2.2",
"description": "npm wrapper for y-sweet server",
"homepage": "https://github.com/drifting-in-space/y-sweet",
"repository": {
"type": "git",
"url": "https://github.com/drifting-in-space/y-sweet.git"
},
"license": "MIT",
"devDependencies": {
"prettier": "^3.0.0"
},
"bugs": {
"url": "https://github.com/drifting-in-space/y-sweet/issues"
}
"name": "y-sweet",
"bin": {
"y-sweet": "./src/run.js"
},
"scripts": {
"postinstall": "node src/install.js",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx}\""
},
"version": "0.3.0",
"description": "npm wrapper for y-sweet server",
"homepage": "https://github.com/drifting-in-space/y-sweet",
"repository": {
"type": "git",
"url": "https://github.com/drifting-in-space/y-sweet.git"
},
"license": "MIT",
"devDependencies": {
"prettier": "^3.0.0"
},
"bugs": {
"url": "https://github.com/drifting-in-space/y-sweet/issues"
}
}
169 changes: 161 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f0091aa

Please sign in to comment.