Skip to content

Commit

Permalink
chore(release): Publish 0.2.2 of @otjs Packages
Browse files Browse the repository at this point in the history
Signed-off-by: Progyan Bhattacharya <bprogyan@gmail.com>
  • Loading branch information
0xTheProDev committed Feb 22, 2024
1 parent 30f754e commit d64ba52
Show file tree
Hide file tree
Showing 11 changed files with 61 additions and 42 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@ Good to have: commit or PR links.
-->

## [v0.2.2](https://github.com/0xTheProDev/Operational-Transformation/tree/v0.2.2)

### Changed

- 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)

### Documentation

- 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)

## [v0.2.1](https://github.com/0xTheProDev/Operational-Transformation/tree/v0.2.1)

### Security
Expand Down
13 changes: 11 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,16 @@
},
"version": {
"allowBranch": "main",
"message": "(release) @otjs/*: Publish %s for all Packages"
"conventionalCommits": true,
"changelog": false,
"exact": true,
"message": "chore(release): Publish %s of @otjs Packages",
"npmClientArgs": ["-P", "--frozen-lockfile"],
"private": false,
"signoffGitCommit": true,
"signGitCommit": true,
"signGitTag": true,
"syncDistVersion": true
}
},
"ignoreChanges": [
Expand All @@ -19,5 +28,5 @@
],
"npmClient": "pnpm",
"npmClientArgs": ["--frozen-lockfile"],
"version": "0.2.1"
"version": "0.2.2"
}
6 changes: 3 additions & 3 deletions packages/ace/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@otjs/ace",
"version": "0.2.1",
"version": "0.2.2",
"description": "Plain Text Editor Adapter for Ace Editor.",
"author": "Progyan Bhattacharya <bprogyan@gmail.com>",
"homepage": "https://github.com/0xTheProDev/Operational-Transformation/tree/main/packages/ace#readme",
Expand Down Expand Up @@ -41,8 +41,8 @@
"clean": "rimraf lib typings index.d.ts"
},
"devDependencies": {
"@otjs/plaintext": "0.2.1",
"@otjs/plaintext-editor": "0.2.1",
"@otjs/plaintext": "0.2.2",
"@otjs/plaintext-editor": "0.2.2",
"@otjs/types": "workspace:*",
"@otjs/utils": "workspace:*",
"@types/ace": "0.0.48",
Expand Down
10 changes: 5 additions & 5 deletions packages/firebase-ace/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@otjs/firebase-ace",
"version": "0.2.1",
"version": "0.2.2",
"description": "Real-time collaborative editor with out of the box binding with Firebase and Ace Editor.",
"author": "Progyan Bhattacharya <bprogyan@gmail.com>",
"homepage": "https://github.com/0xTheProDev/Operational-Transformation/tree/main/packages/firebase-ace#readme",
Expand Down Expand Up @@ -52,10 +52,10 @@
"mitt": "3.0.1"
},
"dependencies": {
"@otjs/ace": "0.2.1",
"@otjs/firebase-plaintext": "0.2.1",
"@otjs/plaintext": "0.2.1",
"@otjs/plaintext-editor": "0.2.1"
"@otjs/ace": "0.2.2",
"@otjs/firebase-plaintext": "0.2.2",
"@otjs/plaintext": "0.2.2",
"@otjs/plaintext-editor": "0.2.2"
},
"peerDependencies": {
"ace-builds": "^1.14.0",
Expand Down
10 changes: 5 additions & 5 deletions packages/firebase-monaco/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@otjs/firebase-monaco",
"version": "0.2.1",
"version": "0.2.2",
"description": "Real-time collaborative editor with out of the box binding with Firebase and Monaco Editor.",
"author": "Progyan Bhattacharya <bprogyan@gmail.com>",
"homepage": "https://github.com/0xTheProDev/Operational-Transformation/tree/main/packages/firebase-monaco#readme",
Expand Down Expand Up @@ -52,10 +52,10 @@
"monaco-editor": "0.34.1"
},
"dependencies": {
"@otjs/firebase-plaintext": "0.2.1",
"@otjs/monaco": "0.2.1",
"@otjs/plaintext": "0.2.1",
"@otjs/plaintext-editor": "0.2.1"
"@otjs/firebase-plaintext": "0.2.2",
"@otjs/monaco": "0.2.2",
"@otjs/plaintext": "0.2.2",
"@otjs/plaintext-editor": "0.2.2"
},
"peerDependencies": {
"firebase": "^9.15.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/firebase-plaintext/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@otjs/firebase-plaintext",
"version": "0.2.1",
"version": "0.2.2",
"description": "Database Adapter implementation for Firebase to use with Plain Text Editor",
"author": "Progyan Bhattacharya <bprogyan@gmail.com>",
"homepage": "https://github.com/0xTheProDev/Operational-Transformation/tree/main/packages/firebase-plaintext#readme",
Expand Down Expand Up @@ -43,8 +43,8 @@
"clean": "rimraf lib typings index.d.ts"
},
"devDependencies": {
"@otjs/plaintext": "0.2.1",
"@otjs/plaintext-editor": "0.2.1",
"@otjs/plaintext": "0.2.2",
"@otjs/plaintext-editor": "0.2.2",
"@otjs/types": "workspace:*",
"@otjs/utils": "workspace:*",
"firebase": "9.15.0"
Expand Down
6 changes: 3 additions & 3 deletions packages/monaco/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@otjs/monaco",
"version": "0.2.1",
"version": "0.2.2",
"description": "Plain Text Editor Adapter for Monaco Editor.",
"author": "Progyan Bhattacharya <bprogyan@gmail.com>",
"homepage": "https://github.com/0xTheProDev/Operational-Transformation/tree/main/packages/monaco#readme",
Expand Down Expand Up @@ -41,8 +41,8 @@
"clean": "rimraf lib typings index.d.ts"
},
"devDependencies": {
"@otjs/plaintext": "0.2.1",
"@otjs/plaintext-editor": "0.2.1",
"@otjs/plaintext": "0.2.2",
"@otjs/plaintext-editor": "0.2.2",
"@otjs/types": "workspace:*",
"@otjs/utils": "workspace:*",
"monaco-editor": "0.34.1"
Expand Down
6 changes: 3 additions & 3 deletions packages/plaintext-editor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@otjs/plaintext-editor",
"version": "0.2.1",
"version": "0.2.2",
"description": "A Editor Client to wrap a Plain Text Editor to have collaborative experience based on OT.",
"author": "Progyan Bhattacharya <bprogyan@gmail.com>",
"homepage": "https://github.com/0xTheProDev/Operational-Transformation/tree/main/packages/plaintext-editor#readme",
Expand Down Expand Up @@ -47,12 +47,12 @@
"test:watch": "pnpm run test --watch"
},
"devDependencies": {
"@otjs/plaintext": "0.2.1",
"@otjs/plaintext": "0.2.2",
"@otjs/types": "workspace:*",
"@otjs/utils": "workspace:*"
},
"dependencies": {
"@otjs/state-machine": "0.2.1"
"@otjs/state-machine": "0.2.2"
},
"peerDependencies": {
"@otjs/plaintext": "^0.2.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/plaintext/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@otjs/plaintext",
"version": "0.2.1",
"version": "0.2.2",
"description": "Operational Transformational Logic for Plain Text.",
"author": "Progyan Bhattacharya <bprogyan@gmail.com>",
"homepage": "https://github.com/0xTheProDev/Operational-Transformation/tree/main/packages/plaintext#readme",
Expand Down
2 changes: 1 addition & 1 deletion packages/state-machine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@otjs/state-machine",
"version": "0.2.1",
"version": "0.2.2",
"description": "State machine to manage Consistency of Operations across multiple clients.",
"author": "Progyan Bhattacharya <bprogyan@gmail.com>",
"homepage": "https://github.com/0xTheProDev/Operational-Transformation/tree/main/packages/state-machine#readme",
Expand Down
32 changes: 16 additions & 16 deletions pnpm-lock.yaml

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

0 comments on commit d64ba52

Please sign in to comment.