Skip to content

Commit 143705b

Browse files
committed
v0.9.1
1 parent 072388b commit 143705b

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v0.9.1 - 2024-08-19
4+
5+
- Fixed a bug where bit arrays could bind to the incorrect SQLite type.
6+
37
## v0.9.0 - 2023-11-06
48

59
- Updated for v0.32.0.

gleam.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "sqlight"
2-
version = "0.9.0"
2+
version = "0.9.1"
33
licences = ["Apache-2.0"]
44
description = "Use SQLite from Gleam!"
55

manifest.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# You typically do not need to edit this file
33

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

1010
[requirements]

test/sqlight_test.gleam

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import sqlight.{SqlightError}
2-
import gleeunit
3-
import gleeunit/should
41
import gleam/dynamic
5-
import gleam/option
62
import gleam/list
3+
import gleam/option
4+
import gleeunit
5+
import gleeunit/should
6+
import sqlight.{SqlightError}
77

88
pub fn main() {
99
gleeunit.main()
@@ -39,7 +39,6 @@ pub fn open_test() {
3939
Ok(Nil) = sqlight.close(conn)
4040
}
4141

42-
@target(erlang)
4342
pub fn open_fail_test() {
4443
let assert Error(SqlightError(sqlight.Cantopen, "", -1)) = sqlight.open("tmp")
4544
}
@@ -101,9 +100,6 @@ pub fn bind_text_test() {
101100
)
102101
}
103102

104-
// TODO: enable this for JS once Gleam v0.26 is out
105-
106-
@target(erlang)
107103
pub fn bind_blob_test() {
108104
use conn <- connect()
109105
let assert Ok([#(<<123, 0>>, "blob")]) =

0 commit comments

Comments
 (0)