@op-engineering/op-sqlite 6.1.3 → 6.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -151,7 +151,8 @@ DBHostObject::DBHostObject(jsi::Runtime &rt,
151
151
  std::shared_ptr<ThreadPool> thread_pool,
152
152
  std::string &db_name, std::string &path,
153
153
  std::string &url, std::string &auth_token)
154
- : db_name(url), jsCallInvoker(invoker), thread_pool(thread_pool), rt(rt) {
154
+ : db_name(db_name), jsCallInvoker(invoker), thread_pool(thread_pool),
155
+ rt(rt) {
155
156
  BridgeResult result =
156
157
  opsqlite_libsql_open_sync(db_name, path, url, auth_token);
157
158
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@op-engineering/op-sqlite",
3
- "version": "6.1.3",
3
+ "version": "6.2.1",
4
4
  "description": "Next generation SQLite for React Native",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",
@@ -28,8 +28,7 @@
28
28
  "prepare": "bob build",
29
29
  "example": "yarn --cwd example",
30
30
  "pods": "cd example && yarn pods",
31
- "bootstrap": "yarn example && yarn && yarn pods",
32
- "release": "./bump-version.sh && git add . && git commit -m 'Release v$(node -p \"require('./package.json').version\")' && git tag v$(node -p \"require('./package.json').version\") && git push origin main --tags && npm publish",
31
+ "release": "./bump-version.sh && git add . && git commit -m 'Release v$(node -p \"require('./package.json').version\")' && git push && git tag v$(node -p \"require('./package.json').version\") && git push --tags && npm publish",
33
32
  "clang-format-check": "clang-format -i cpp/*.cpp cpp/*.h"
34
33
  },
35
34
  "keywords": [
@@ -84,5 +83,5 @@
84
83
  ]
85
84
  ]
86
85
  },
87
- "packageManager": "yarn@4.1.1"
86
+ "packageManager": "yarn@4.3.1"
88
87
  }