Skip to content

Commit

Permalink
v0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lpil committed Aug 19, 2024
1 parent 072388b commit 143705b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.9.1 - 2024-08-19

- Fixed a bug where bit arrays could bind to the incorrect SQLite type.

## v0.9.0 - 2023-11-06

- Updated for v0.32.0.
Expand Down
2 changes: 1 addition & 1 deletion gleam.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "sqlight"
version = "0.9.0"
version = "0.9.1"
licences = ["Apache-2.0"]
description = "Use SQLite from Gleam!"

Expand Down
6 changes: 3 additions & 3 deletions manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# You typically do not need to edit this file

packages = [
{ name = "esqlite", version = "0.8.6", build_tools = ["rebar3"], requirements = [], otp_app = "esqlite", source = "hex", outer_checksum = "607E45F4DA42601D8F530979417F57A4CD629AB49085891849302057E68EA188" },
{ name = "gleam_stdlib", version = "0.32.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "07D64C26D014CF570F8ACADCE602761EA2E74C842D26F2FD49B0D61973D9966F" },
{ name = "gleeunit", version = "1.0.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "D3682ED8C5F9CAE1C928F2506DE91625588CC752495988CBE0F5653A42A6F334" },
{ name = "esqlite", version = "0.8.8", build_tools = ["rebar3"], requirements = [], otp_app = "esqlite", source = "hex", outer_checksum = "374902457C7D94DC9409C98D3BDD1CA0D50A60DC9F3BDF1FD8EB74C0DCDF02D6" },
{ name = "gleam_stdlib", version = "0.39.0", build_tools = ["gleam"], requirements = [], otp_app = "gleam_stdlib", source = "hex", outer_checksum = "2D7DE885A6EA7F1D5015D1698920C9BAF7241102836CE0C3837A4F160128A9C4" },
{ name = "gleeunit", version = "1.2.0", build_tools = ["gleam"], requirements = ["gleam_stdlib"], otp_app = "gleeunit", source = "hex", outer_checksum = "F7A7228925D3EE7D0813C922E062BFD6D7E9310F0BEE585D3A42F3307E3CFD13" },
]

[requirements]
Expand Down
12 changes: 4 additions & 8 deletions test/sqlight_test.gleam
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import sqlight.{SqlightError}
import gleeunit
import gleeunit/should
import gleam/dynamic
import gleam/option
import gleam/list
import gleam/option
import gleeunit
import gleeunit/should
import sqlight.{SqlightError}

pub fn main() {
gleeunit.main()
Expand Down Expand Up @@ -39,7 +39,6 @@ pub fn open_test() {
Ok(Nil) = sqlight.close(conn)
}

@target(erlang)
pub fn open_fail_test() {
let assert Error(SqlightError(sqlight.Cantopen, "", -1)) = sqlight.open("tmp")
}
Expand Down Expand Up @@ -101,9 +100,6 @@ pub fn bind_text_test() {
)
}

// TODO: enable this for JS once Gleam v0.26 is out

@target(erlang)
pub fn bind_blob_test() {
use conn <- connect()
let assert Ok([#(<<123, 0>>, "blob")]) =
Expand Down

0 comments on commit 143705b

Please sign in to comment.