Skip to content

Commit dc261e3

Browse files
committed
Release v0.2.0 with JS/ES6/TS runtime based on V8-engine and dotnet client.
1 parent 21b59dc commit dc261e3

File tree

8 files changed

+20
-8
lines changed

8 files changed

+20
-8
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## v0.2.0
2+
3+
* Add JS/ES6/TS scripting support based on speedy V8-engine and rustyscript runtime.
4+
* Enables the registration of custom HTML end-points
5+
* Provides database access.
6+
* In the future we'd like to add more life-cycles (e.g. scheduled
7+
operations).
8+
* In our [micro-benchmarks](https://trailbase.io/reference/benchmarks/) V8
9+
was about 45x faster than goja.
10+
* Added official C#/.NET client. Can be used with MAUI for cross-platform
11+
mobile and desktop development.
12+
113
## v0.1.1
214

315
* Changed license to OSI-approved weak-copyleft OSL-3.0.

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/trailbase-dart/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: trailbase
22
description: Thing client library for TrailBase.
33
homepage: https://trailbase.io
44
repository: https://github.com/trailbaseio/trailbase
5-
version: 0.1.0
5+
version: 0.1.1
66

77
environment:
88
sdk: ^3.5.3

client/trailbase-ts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ For more context, documentation, and an online demo, check out our website
1010
This is the first-party client for hooking up your PWA, SPAs and JS backend
1111
applications with TrailBase.
1212
While we're working on better documentation, an example setup can be found under
13-
[`/examples/blog/flutter`](https://github.com/trailbaseio/trailbase/tree/main/examples/blog/web)
13+
[`/examples/blog/web`](https://github.com/trailbaseio/trailbase/tree/main/examples/blog/web)
1414
in the repository.

client/trailbase-ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "trailbase",
33
"description": "Official TrailBase client",
4-
"version": "0.1.0",
4+
"version": "0.1.2",
55
"license": "OSL-3.0",
66
"type": "module",
77
"main": "./src/index.ts",

examples/blog/flutter/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ packages:
411411
path: "../../../client/trailbase-dart"
412412
relative: true
413413
source: path
414-
version: "0.1.0"
414+
version: "0.1.1"
415415
typed_data:
416416
dependency: transitive
417417
description:

trailbase-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "trailbase-cli"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
license = "OSL-3.0"
66

trailbase-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "trailbase-core"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
license = "OSL-3.0"
66

0 commit comments

Comments
 (0)