Skip to content

Commit b571646

Browse files
committed
0.5.0
1 parent 662352e commit b571646

File tree

8 files changed

+31
-6
lines changed

8 files changed

+31
-6
lines changed

.zed/tasks.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[
2+
{
3+
"label": "Start docker container",
4+
"command": "docker run --name scylladb -d --rm -it -p 9042:9042 scylladb/scylla --smp 2",
5+
"reveal": "never",
6+
"hide": "on_success"
7+
},
8+
{
9+
"label": "Build driver",
10+
"command": "yarn build",
11+
"hide": "on_success"
12+
},
13+
{
14+
"label": "Run example udt",
15+
"command": "yarn tsx ./examples/udt.mts",
16+
"reveal": "always",
17+
"hide": "never",
18+
"shell": "system"
19+
}
20+
]

npm/darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lambda-group/scylladb-darwin-arm64",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"os": [
55
"darwin"
66
],

npm/darwin-universal/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lambda-group/scylladb-darwin-universal",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"os": [
55
"darwin"
66
],

npm/darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lambda-group/scylladb-darwin-x64",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"os": [
55
"darwin"
66
],

npm/linux-x64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lambda-group/scylladb-linux-x64-gnu",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"os": [
55
"linux"
66
],

npm/win32-x64-msvc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lambda-group/scylladb-win32-x64-msvc",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"os": [
55
"win32"
66
],

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lambda-group/scylladb",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"repository": "https://github.com/Daniel-Boll/scylla-javascript-driver",
55
"description": "🚀 JavaScript driver for ScyllaDB, harnessing Rust's power through napi-rs for top performance. Pre-release stage. 🧪🔧",
66
"author": {

rust-analyzer.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"procMacro": {
3+
"enable": true
4+
}
5+
}

0 commit comments

Comments
 (0)