File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Version History
2
+
3
+ v6.0.1
4
+ 1 . Add missing error function to plugin.
5
+
2
6
v6.0.0
3
7
1 . Added RNW>=0.62 WinRT CPP implementation thanks to tsytsarkin (https://github.com/andpor/react-native-sqlite-storage/pull/461 )
4
8
2 . Fix xcode 12 compatibility (https://github.com/andpor/react-native-sqlite-storage/pull/447 )
Original file line number Diff line number Diff line change @@ -99,6 +99,10 @@ plugin.warn = function(...messages) {
99
99
console . warn ( ...messages )
100
100
}
101
101
102
+ plugin . error = function ( ...messages ) {
103
+ console . error ( ...messages )
104
+ }
105
+
102
106
SQLitePlugin = function ( openargs , openSuccess , openError ) {
103
107
var dbname ;
104
108
if ( ! ( openargs && openargs [ "name" ] ) ) {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-native-sqlite-storage" ,
3
- "version" : " 6.0.0 " ,
3
+ "version" : " 6.0.1 " ,
4
4
"description" : " SQLite3 bindings for React Native (Android & iOS)" ,
5
5
"main" : " sqlite.js" ,
6
6
"scripts" : {
You can’t perform that action at this time.
0 commit comments