Skip to content

Commit 7f91c82

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

File tree

6 files changed

+16
-5
lines changed

6 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
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 operations).
7+
* In our [micro-benchmarks](https://trailbase.io/reference/benchmarks/) V8 was
8+
about 45x faster than goja.
9+
* Added official C#/.NET client. Can be used with MAUI for cross-platform
10+
mobile and desktop development.
11+
112
## v0.1.1
213

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

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",

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)