@nativescript-community/sqlite 3.4.0 → 3.4.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [3.4.1](https://github.com/nativescript-community/sqlite/compare/v3.4.0...v3.4.1) (2022-02-01)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **android:** native-api-usage fix ([eebc24e](https://github.com/nativescript-community/sqlite/commit/eebc24e70390453cf7cff606f51c8a93e4f9e143))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.4.0](https://github.com/nativescript-community/sqlite/compare/v3.3.12...v3.4.0) (2021-10-03)
7
18
 
8
19
 
package/README.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # Nativescript: Akylas Sqlite
2
2
 
3
- [![npm](https://img.shields.io/npm/v/@akylas/nativescript-sqlite.svg)](https://www.npmjs.com/package/@akylas/nativescript-sqlite)
4
- [![npm](https://img.shields.io/npm/dt/@akylas/nativescript-sqlite.svg?label=npm%20downloads)](https://www.npmjs.com/package/@akylas/nativescript-sqlite)
3
+ [![npm](https://img.shields.io/npm/v/@nativescript-community/sqlite.svg)](https://www.npmjs.com/package/@nativescript-community/sqlite)
4
+ [![npm](https://img.shields.io/npm/dt/@nativescript-community/sqlite.svg?label=npm%20downloads)](https://www.npmjs.com/package/@nativescript-community/sqlite)
5
5
 
6
6
  ## Installation
7
7
 
8
8
  ```
9
- ns plugin add @akylas/nativescript-sqlite
9
+ ns plugin add @nativescript-community/sqlite
10
10
  ```
11
11
 
12
12
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nativescript-community/sqlite",
3
- "version": "3.4.0",
3
+ "version": "3.4.1",
4
4
  "description": "SQLite for Nativescript",
5
5
  "main": "sqlite",
6
6
  "typings": "sqlite.d.ts",
@@ -36,5 +36,5 @@
36
36
  "dependencies": {
37
37
  "@nativescript/hook": "~2.0.0"
38
38
  },
39
- "gitHead": "325d01ddb00884bddd2420862bda7c64a3356544"
39
+ "gitHead": "5ddc3926ece1924df17ac203595a45bf451a20b4"
40
40
  }
@@ -1,5 +1,7 @@
1
1
  {
2
2
  "uses": [
3
- "android.database:Cursor*", "android.database.sqlite:SQLiteDatabase*"
3
+ "android.database:Cursor*",
4
+ "android.database.sqlite:SQLiteClosable*",
5
+ "android.database.sqlite:SQLiteDatabase*"
4
6
  ]
5
7
  }