Skip to content

Commit 76fa477

Browse files
authored
Update sqlite3 to 3.37.2 (#184)
1 parent 10412be commit 76fa477

File tree

6 files changed

+92
-45
lines changed

6 files changed

+92
-45
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changelog
22

33
## [Unreleased](unreleased)
4+
### Changed
5+
- Update SQLite from [3.37.0](https://www.sqlite.org/releaselog/3_37_0.html) to [3.37.2](https://sqlite.org/releaselog/3_37_2.html)
6+
47

58
## [0.8.4] - 2021-12-08
69
### Fixed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Package: https://hex.pm/packages/exqlite
3333

3434
```elixir
3535
defp deps do
36-
{:exqlite, "~> 0.8.4"}
36+
{:exqlite, "~> 0.8.5"}
3737
end
3838
```
3939

bin/download_sqlite.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ set -e
77
# https://www.sqlite.org/src/timeline?r=version-3.36.0
88
# VERSION consists of 7 digits, like:3350000 for "3.35.5" or 3360000 for "3.36.0"
99

10-
VERSION=3370000 # 3.37.0
10+
VERSION=3370200 # 3.37.2
1111

1212
mkdir -p tmp
1313
pushd tmp
1414

15-
wget https://sqlite.org/2021/sqlite-autoconf-$VERSION.tar.gz
15+
wget https://sqlite.org/2022/sqlite-autoconf-$VERSION.tar.gz
1616

1717
tar xvfz sqlite-autoconf-$VERSION.tar.gz
1818

0 commit comments

Comments
 (0)