Skip to content

Commit

Permalink
[ci] release (#145)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Apr 29, 2023
1 parent f1c834b commit b52f6b5
Show file tree
Hide file tree
Showing 10 changed files with 53 additions and 22 deletions.
12 changes: 0 additions & 12 deletions .changeset/wild-cooks-sing.md

This file was deleted.

7 changes: 7 additions & 0 deletions apps/server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# server

## 0.0.61

### Patch Changes

- Updated dependencies [590d5a8]
- evolu-server@1.0.0

## 0.0.60

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions apps/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "server",
"version": "0.0.60",
"version": "0.0.61",
"private": true,
"type": "module",
"scripts": {
Expand All @@ -11,7 +11,7 @@
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"dependencies": {
"evolu-server": "workspace:0.1.3"
"evolu-server": "workspace:1.0.0"
},
"devDependencies": {
"@evolu/tsconfig": "workspace:0.0.2",
Expand Down
7 changes: 7 additions & 0 deletions apps/web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# web

## 0.0.61

### Patch Changes

- Updated dependencies [590d5a8]
- evolu@5.0.0

## 0.0.60

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions apps/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web",
"version": "0.0.60",
"version": "0.0.61",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -13,7 +13,7 @@
"@effect/data": "^0.12.2",
"@effect/schema": "~0.17.2",
"clsx": "^1.2.1",
"evolu": "workspace:4.1.2",
"evolu": "workspace:5.0.0",
"next": "^13.3.1",
"nextra": "^2.4.2",
"nextra-theme-docs": "^2.4.2",
Expand Down
17 changes: 17 additions & 0 deletions packages/evolu-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# evolu-server

## 1.0.0

### Major Changes

- 590d5a8: Port Evolu from fp-ts to Effect

Nothing changed except Evolu is internally using [Effect](https://www.effect.website) instead of fp-ts now. Because of that, I refactored all source code hence a major change.

Effect is [the successor](https://dev.to/effect-ts/a-bright-future-for-effect-455m) of fp-ts. If you already know fp-ts, you will understand it quickly. If you don't know fp-ts yet, skip it, and learn Effect instead. Give it five minutes, and you will love it.

The devil's advocate question: Could Evolu be written without Effect? It could be, but the source code would be uglier, brittle, and slower. Let me explain it. For now, Evolu is using a synchronous version of SQLite. But soon, we will also use asynchronous SQLite for other platforms where synchronous SQLite is not available. With Effect, the code is the same. Without Effect, we would always use Promises, even for synchronous code. Or we would have to write the same logic twice. As for brittle code, Effect catches and can recover from all errors. As for uglier code, errors we can expect are typed. And much more. I believe Effect will be the next big thing in the JavaScript ecosystem.

### Patch Changes

- Updated dependencies [590d5a8]
- evolu@5.0.0

## 0.1.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/evolu-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "evolu-server",
"version": "0.1.3",
"version": "1.0.0",
"description": "Node.js server for Evolu library",
"author": "Daniel Steigerwald <daniel@steigerwald.cz>",
"license": "MIT",
Expand Down Expand Up @@ -32,7 +32,7 @@
"better-sqlite3": "^8.3.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"evolu": "workspace:4.1.2",
"evolu": "workspace:5.0.0",
"express": "^4.18.2"
},
"devDependencies": {
Expand Down
12 changes: 12 additions & 0 deletions packages/evolu/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# evolu

## 5.0.0

### Major Changes

- 590d5a8: Port Evolu from fp-ts to Effect

Nothing changed except Evolu is internally using [Effect](https://www.effect.website) instead of fp-ts now. Because of that, I refactored all source code hence a major change.

Effect is [the successor](https://dev.to/effect-ts/a-bright-future-for-effect-455m) of fp-ts. If you already know fp-ts, you will understand it quickly. If you don't know fp-ts yet, skip it, and learn Effect instead. Give it five minutes, and you will love it.

The devil's advocate question: Could Evolu be written without Effect? It could be, but the source code would be uglier, brittle, and slower. Let me explain it. For now, Evolu is using a synchronous version of SQLite. But soon, we will also use asynchronous SQLite for other platforms where synchronous SQLite is not available. With Effect, the code is the same. Without Effect, we would always use Promises, even for synchronous code. Or we would have to write the same logic twice. As for brittle code, Effect catches and can recover from all errors. As for uglier code, errors we can expect are typed. And much more. I believe Effect will be the next big thing in the JavaScript ecosystem.

## 4.1.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/evolu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "evolu",
"version": "4.1.2",
"version": "5.0.0",
"description": "React Hooks library for local-first apps with end-to-end encrypted backup and sync using SQLite and CRDT.",
"keywords": [
"evolu",
Expand Down
6 changes: 3 additions & 3 deletions pnpm-lock.yaml

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

1 comment on commit b52f6b5

@vercel
Copy link

@vercel vercel bot commented on b52f6b5 Apr 29, 2023

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:

evolu – ./

evolu.vercel.app
www.evolu.dev
evolu-evolu.vercel.app
evolu-git-main-evolu.vercel.app
evolu.dev

Please sign in to comment.