Skip to content

Commit

Permalink
Release v0.2.0 with JS/ES6/TS runtime based on V8-engine and dotnet c…
Browse files Browse the repository at this point in the history
…lient.
  • Loading branch information
ignatz committed Nov 14, 2024
1 parent 21b59dc commit fe01c3b
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 8 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## v0.2.0

* Add JS/ES6/TS scripting support based on speedy V8-engine and rustyscript runtime.
* Enables the registration of custom HTML end-points
* Provides database access.
* In the future we'd like to add more life-cycles (e.g. scheduled operations).
* In our [micro-benchmarks](https://trailbase.io/reference/benchmarks/) V8 was
about 45x faster than goja.
* Added official C#/.NET client. Can be used with MAUI for cross-platform
mobile and desktop development.

## v0.1.1

* Changed license to OSI-approved weak-copyleft OSL-3.0.
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion client/trailbase-dart/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: trailbase
description: Thing client library for TrailBase.
homepage: https://trailbase.io
repository: https://github.com/trailbaseio/trailbase
version: 0.1.0
version: 0.1.1

environment:
sdk: ^3.5.3
Expand Down
2 changes: 1 addition & 1 deletion client/trailbase-ts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ For more context, documentation, and an online demo, check out our website
This is the first-party client for hooking up your PWA, SPAs and JS backend
applications with TrailBase.
While we're working on better documentation, an example setup can be found under
[`/examples/blog/flutter`](https://github.com/trailbaseio/trailbase/tree/main/examples/blog/web)
[`/examples/blog/web`](https://github.com/trailbaseio/trailbase/tree/main/examples/blog/web)
in the repository.
2 changes: 1 addition & 1 deletion client/trailbase-ts/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "trailbase",
"description": "Official TrailBase client",
"version": "0.1.0",
"version": "0.1.2",
"license": "OSL-3.0",
"type": "module",
"main": "./src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion examples/blog/flutter/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ packages:
path: "../../../client/trailbase-dart"
relative: true
source: path
version: "0.1.0"
version: "0.1.1"
typed_data:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion trailbase-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trailbase-cli"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license = "OSL-3.0"

Expand Down
2 changes: 1 addition & 1 deletion trailbase-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trailbase-core"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license = "OSL-3.0"

Expand Down

0 comments on commit fe01c3b

Please sign in to comment.