Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
pilcrowonpaper committed Mar 18, 2024
1 parent 3b419eb commit ddc7c4d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions packages/adapter-drizzle/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# @lucia-auth/adapter-drizzle

## 1.0.5

- Fix table types ([#1495](https://github.com/lucia-auth/lucia/pull/1495)).

## 1.0.4

- Fix table types.
Expand Down
2 changes: 1 addition & 1 deletion packages/adapter-drizzle/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lucia-auth/adapter-drizzle",
"version": "1.0.4",
"version": "1.0.5",
"description": "Drizzle ORM adapter for Lucia",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/adapter-drizzle/src/drivers/sqlite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ export type SQLiteSessionTable = SQLiteTableWithColumns<{
>;
expiresAt: SQLiteColumn<
{
dataType: "number";
dataType: any;
notNull: true;
enumValues: any;
tableName: any;
Expand Down

0 comments on commit ddc7c4d

Please sign in to comment.