Skip to content

Commit d64ba52

Browse files
committed
chore(release): Publish 0.2.2 of @otjs Packages
Signed-off-by: Progyan Bhattacharya <[email protected]>
1 parent 30f754e commit d64ba52

File tree

11 files changed

+61
-42
lines changed

11 files changed

+61
-42
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,16 @@ Good to have: commit or PR links.
2323
2424
-->
2525

26+
## [v0.2.2](https://github.com/0xTheProDev/Operational-Transformation/tree/v0.2.2)
27+
28+
### Changed
29+
30+
- Uniform Event Emitter interface and implementation extended across all event-driven modules. [Tracker](https://github.com/0xTheProDev/Operational-Transformation/issues/122) [Work Log](https://github.com/0xTheProDev/Operational-Transformation/pull/121)
31+
32+
### Documentation
33+
34+
- Changed preferred package manager from `yarn` to `pnpm` and updated documentation accordingly. [Tracker](https://github.com/0xTheProDev/Operational-Transformation/issues/118) [Work Log](https://github.com/0xTheProDev/Operational-Transformation/pull/119)
35+
2636
## [v0.2.1](https://github.com/0xTheProDev/Operational-Transformation/tree/v0.2.1)
2737

2838
### Security

lerna.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,16 @@
77
},
88
"version": {
99
"allowBranch": "main",
10-
"message": "(release) @otjs/*: Publish %s for all Packages"
10+
"conventionalCommits": true,
11+
"changelog": false,
12+
"exact": true,
13+
"message": "chore(release): Publish %s of @otjs Packages",
14+
"npmClientArgs": ["-P", "--frozen-lockfile"],
15+
"private": false,
16+
"signoffGitCommit": true,
17+
"signGitCommit": true,
18+
"signGitTag": true,
19+
"syncDistVersion": true
1120
}
1221
},
1322
"ignoreChanges": [
@@ -19,5 +28,5 @@
1928
],
2029
"npmClient": "pnpm",
2130
"npmClientArgs": ["--frozen-lockfile"],
22-
"version": "0.2.1"
31+
"version": "0.2.2"
2332
}

packages/ace/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@otjs/ace",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Plain Text Editor Adapter for Ace Editor.",
55
"author": "Progyan Bhattacharya <[email protected]>",
66
"homepage": "https://github.com/0xTheProDev/Operational-Transformation/tree/main/packages/ace#readme",
@@ -41,8 +41,8 @@
4141
"clean": "rimraf lib typings index.d.ts"
4242
},
4343
"devDependencies": {
44-
"@otjs/plaintext": "0.2.1",
45-
"@otjs/plaintext-editor": "0.2.1",
44+
"@otjs/plaintext": "0.2.2",
45+
"@otjs/plaintext-editor": "0.2.2",
4646
"@otjs/types": "workspace:*",
4747
"@otjs/utils": "workspace:*",
4848
"@types/ace": "0.0.48",

packages/firebase-ace/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@otjs/firebase-ace",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Real-time collaborative editor with out of the box binding with Firebase and Ace Editor.",
55
"author": "Progyan Bhattacharya <[email protected]>",
66
"homepage": "https://github.com/0xTheProDev/Operational-Transformation/tree/main/packages/firebase-ace#readme",
@@ -52,10 +52,10 @@
5252
"mitt": "3.0.1"
5353
},
5454
"dependencies": {
55-
"@otjs/ace": "0.2.1",
56-
"@otjs/firebase-plaintext": "0.2.1",
57-
"@otjs/plaintext": "0.2.1",
58-
"@otjs/plaintext-editor": "0.2.1"
55+
"@otjs/ace": "0.2.2",
56+
"@otjs/firebase-plaintext": "0.2.2",
57+
"@otjs/plaintext": "0.2.2",
58+
"@otjs/plaintext-editor": "0.2.2"
5959
},
6060
"peerDependencies": {
6161
"ace-builds": "^1.14.0",

packages/firebase-monaco/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@otjs/firebase-monaco",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Real-time collaborative editor with out of the box binding with Firebase and Monaco Editor.",
55
"author": "Progyan Bhattacharya <[email protected]>",
66
"homepage": "https://github.com/0xTheProDev/Operational-Transformation/tree/main/packages/firebase-monaco#readme",
@@ -52,10 +52,10 @@
5252
"monaco-editor": "0.34.1"
5353
},
5454
"dependencies": {
55-
"@otjs/firebase-plaintext": "0.2.1",
56-
"@otjs/monaco": "0.2.1",
57-
"@otjs/plaintext": "0.2.1",
58-
"@otjs/plaintext-editor": "0.2.1"
55+
"@otjs/firebase-plaintext": "0.2.2",
56+
"@otjs/monaco": "0.2.2",
57+
"@otjs/plaintext": "0.2.2",
58+
"@otjs/plaintext-editor": "0.2.2"
5959
},
6060
"peerDependencies": {
6161
"firebase": "^9.15.0",

packages/firebase-plaintext/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@otjs/firebase-plaintext",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Database Adapter implementation for Firebase to use with Plain Text Editor",
55
"author": "Progyan Bhattacharya <[email protected]>",
66
"homepage": "https://github.com/0xTheProDev/Operational-Transformation/tree/main/packages/firebase-plaintext#readme",
@@ -43,8 +43,8 @@
4343
"clean": "rimraf lib typings index.d.ts"
4444
},
4545
"devDependencies": {
46-
"@otjs/plaintext": "0.2.1",
47-
"@otjs/plaintext-editor": "0.2.1",
46+
"@otjs/plaintext": "0.2.2",
47+
"@otjs/plaintext-editor": "0.2.2",
4848
"@otjs/types": "workspace:*",
4949
"@otjs/utils": "workspace:*",
5050
"firebase": "9.15.0"

packages/monaco/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@otjs/monaco",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Plain Text Editor Adapter for Monaco Editor.",
55
"author": "Progyan Bhattacharya <[email protected]>",
66
"homepage": "https://github.com/0xTheProDev/Operational-Transformation/tree/main/packages/monaco#readme",
@@ -41,8 +41,8 @@
4141
"clean": "rimraf lib typings index.d.ts"
4242
},
4343
"devDependencies": {
44-
"@otjs/plaintext": "0.2.1",
45-
"@otjs/plaintext-editor": "0.2.1",
44+
"@otjs/plaintext": "0.2.2",
45+
"@otjs/plaintext-editor": "0.2.2",
4646
"@otjs/types": "workspace:*",
4747
"@otjs/utils": "workspace:*",
4848
"monaco-editor": "0.34.1"

packages/plaintext-editor/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@otjs/plaintext-editor",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "A Editor Client to wrap a Plain Text Editor to have collaborative experience based on OT.",
55
"author": "Progyan Bhattacharya <[email protected]>",
66
"homepage": "https://github.com/0xTheProDev/Operational-Transformation/tree/main/packages/plaintext-editor#readme",
@@ -47,12 +47,12 @@
4747
"test:watch": "pnpm run test --watch"
4848
},
4949
"devDependencies": {
50-
"@otjs/plaintext": "0.2.1",
50+
"@otjs/plaintext": "0.2.2",
5151
"@otjs/types": "workspace:*",
5252
"@otjs/utils": "workspace:*"
5353
},
5454
"dependencies": {
55-
"@otjs/state-machine": "0.2.1"
55+
"@otjs/state-machine": "0.2.2"
5656
},
5757
"peerDependencies": {
5858
"@otjs/plaintext": "^0.2.0"

packages/plaintext/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@otjs/plaintext",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "Operational Transformational Logic for Plain Text.",
55
"author": "Progyan Bhattacharya <[email protected]>",
66
"homepage": "https://github.com/0xTheProDev/Operational-Transformation/tree/main/packages/plaintext#readme",

packages/state-machine/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@otjs/state-machine",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "State machine to manage Consistency of Operations across multiple clients.",
55
"author": "Progyan Bhattacharya <[email protected]>",
66
"homepage": "https://github.com/0xTheProDev/Operational-Transformation/tree/main/packages/state-machine#readme",

0 commit comments

Comments
 (0)