Skip to content

Commit d3692b1

Browse files
committed
1.1.1
1 parent c09788b commit d3692b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Sqlite ORM for deno. Tables with relations are not supported.
33
#### Usage
44
**Create an instance of the ORM:**
55
```typescript
6-
import { SqliteOrm, SqlTable } from 'https://deno.land/x/deno_sqlite_orm@1.1.0/mod.ts';
6+
import { SqliteOrm, SqlTable } from 'https://deno.land/x/deno_sqlite_orm@1.1.1/mod.ts';
77
const orm = new SqliteOrm({
88
dbPath: 'path/to/database.db'
99
});
@@ -128,7 +128,7 @@ orm.aggregateSelect<[foo: string, count: number]>(Foo, {
128128
Objects are converted to JSON before saving, and parsed when read. If its a class instance then the class should be registered
129129
by `@registerJsonSerializable()`
130130
```typescript
131-
import { registerJsonSerializable } from 'https://deno.land/x/deno_sqlite_orm@1.1.0/mod.ts';
131+
import { registerJsonSerializable } from 'https://deno.land/x/deno_sqlite_orm@1.1.1/mod.ts';
132132

133133
// the property "ignored" will be ignored and not saved
134134
@registerJsonSerializable(['ignored'])
@@ -147,7 +147,7 @@ class Foo extends SqlTable {
147147
148148
##### Example
149149
```typescript
150-
import { SqliteOrm, SqlTable } from 'https://deno.land/x/deno_sqlite_orm@1.1.0/mod.ts';
150+
import { SqliteOrm, SqlTable } from 'https://deno.land/x/deno_sqlite_orm@1.1.1/mod.ts';
151151
const orm = new SqliteOrm({
152152
dbPath: 'path/to/database.db',
153153
});

0 commit comments

Comments
 (0)