Skip to content

Commit

Permalink
chore: release (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Jan 9, 2024
1 parent e1c69c8 commit e2d4465
Show file tree
Hide file tree
Showing 15 changed files with 44 additions and 44 deletions.
6 changes: 0 additions & 6 deletions .changeset/brown-years-kneel.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fair-pets-deny.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/mighty-falcons-burn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/old-lions-suffer.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/proud-plums-remain.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/shaggy-mangos-care.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slimy-rocks-sing.md

This file was deleted.

8 changes: 8 additions & 0 deletions packages/collaboration/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @rekajs/collaboration

## 0.1.6

### Patch Changes

- [#141](https://github.com/prevwong/reka.js/pull/141) [`a325dda`](https://github.com/prevwong/reka.js/commit/a325ddaac8942f426eef70eddcec167eb0a49918) Thanks [@prevwong](https://github.com/prevwong)! - Simplify and cleanup Observer class

- [#138](https://github.com/prevwong/reka.js/pull/138) [`7b6d6cb`](https://github.com/prevwong/reka.js/commit/7b6d6cb59d7367dae03d8fec455168ba310ca292) Thanks [@prevwong](https://github.com/prevwong)! - Implement undo/redo

## 0.1.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/collaboration/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rekajs/collaboration",
"version": "0.1.5",
"version": "0.1.6",
"description": "Provides multiplayer functionality for Reka.js",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
Expand Down
14 changes: 14 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @rekajs/core

## 0.1.26

### Patch Changes

- [#142](https://github.com/prevwong/reka.js/pull/142) [`5c258bf`](https://github.com/prevwong/reka.js/commit/5c258bf5befde5d4d5aa460f345e31ee4aff63fc) Thanks [@prevwong](https://github.com/prevwong)! - Add ability to specify computed properties on Reka data types

- [`6cca294`](https://github.com/prevwong/reka.js/commit/6cca294fab67ac19da36fe8703ca57ce6fb50b1a) Thanks [@prevwong](https://github.com/prevwong)! - Fix mobx warning when evaluating external component

- [#141](https://github.com/prevwong/reka.js/pull/141) [`a325dda`](https://github.com/prevwong/reka.js/commit/a325ddaac8942f426eef70eddcec167eb0a49918) Thanks [@prevwong](https://github.com/prevwong)! - Simplify and cleanup Observer class

- [#138](https://github.com/prevwong/reka.js/pull/138) [`7b6d6cb`](https://github.com/prevwong/reka.js/commit/7b6d6cb59d7367dae03d8fec455168ba310ca292) Thanks [@prevwong](https://github.com/prevwong)! - Implement undo/redo

- [`6306de6`](https://github.com/prevwong/reka.js/commit/6306de6ab030a61eddfbd16ab0d11bf1d156d2ef) Thanks [@prevwong](https://github.com/prevwong)! - Add computed component property in evaluator

## 0.1.25

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rekajs/core",
"version": "0.1.25",
"version": "0.1.26",
"description": "State management system for building no-code page editors",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
Expand Down
6 changes: 6 additions & 0 deletions packages/react-code-editor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @rekajs/react-code-editor

## 0.1.7

### Patch Changes

- [#141](https://github.com/prevwong/reka.js/pull/141) [`a325dda`](https://github.com/prevwong/reka.js/commit/a325ddaac8942f426eef70eddcec167eb0a49918) Thanks [@prevwong](https://github.com/prevwong)! - Simplify and cleanup Observer class

## 0.1.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react-code-editor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rekajs/react-code-editor",
"version": "0.1.6",
"version": "0.1.7",
"description": "Codemirror editor for editing Reka AST in code",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
Expand Down
12 changes: 12 additions & 0 deletions packages/types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @rekajs/types

## 0.1.19

### Patch Changes

- [#142](https://github.com/prevwong/reka.js/pull/142) [`5c258bf`](https://github.com/prevwong/reka.js/commit/5c258bf5befde5d4d5aa460f345e31ee4aff63fc) Thanks [@prevwong](https://github.com/prevwong)! - Add ability to specify computed properties on Reka data types

- [`13857e7`](https://github.com/prevwong/reka.js/commit/13857e793242e851fb2222f19209ee3ddaa5c72c) Thanks [@prevwong](https://github.com/prevwong)! - Add clone() util

- [`b1b08ed`](https://github.com/prevwong/reka.js/commit/b1b08ed1443b7c438898a7e02a13c819efba1910) Thanks [@prevwong](https://github.com/prevwong)! - Remove cyclic imports

- [#141](https://github.com/prevwong/reka.js/pull/141) [`a325dda`](https://github.com/prevwong/reka.js/commit/a325ddaac8942f426eef70eddcec167eb0a49918) Thanks [@prevwong](https://github.com/prevwong)! - Simplify and cleanup Observer class

## 0.1.18

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rekajs/types",
"version": "0.1.18",
"version": "0.1.19",
"description": "Create and manage Reka data types",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
Expand Down

1 comment on commit e2d4465

@vercel
Copy link

@vercel vercel bot commented on e2d4465 Jan 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

reka – ./

reka.js.org
reka-prevwong.vercel.app
reka-git-main-prevwong.vercel.app
rekajs.vercel.app

Please sign in to comment.