diff options
| author | Chilledheart | 2014-12-11 21:48:34 +0800 |
|---|---|---|
| committer | Mike McQuaid | 2014-12-11 14:08:36 +0000 |
| commit | 36dd72268d7e4032464d21252ce048411610c215 (patch) | |
| tree | 9b43d8a7837b33e2608347810db3e215eed0f997 | |
| parent | e15eb8f465b5740537b723c9ff0ab822d21252e2 (diff) | |
| download | homebrew-36dd72268d7e4032464d21252ce048411610c215.tar.bz2 | |
sqlite 3.8.7.4
release log (from https://www.sqlite.org/releaselog/3_8_7_4.html):
- Bug fix: Add in a mutex that was omitted from the previous release.
Closes #34890.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
| -rw-r--r-- | Library/Formula/sqlite.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/sqlite.rb b/Library/Formula/sqlite.rb index 291a1133d..76ef124ba 100644 --- a/Library/Formula/sqlite.rb +++ b/Library/Formula/sqlite.rb @@ -2,9 +2,9 @@ require "formula" class Sqlite < Formula homepage "http://sqlite.org/" - url "https://www.sqlite.org/2014/sqlite-autoconf-3080703.tar.gz" - version "3.8.7.3" - sha1 "5cbe9aa4af1b32787045a251dba6debee3f061c0" + url "https://www.sqlite.org/2014/sqlite-autoconf-3080704.tar.gz" + version "3.8.7.4" + sha1 "70ca0b8884a6b145b7f777724670566e2b4f3cde" bottle do cellar :any @@ -32,9 +32,9 @@ class Sqlite < Formula end resource "docs" do - url "https://www.sqlite.org/2014/sqlite-doc-3080703.zip" - version "3.8.7.3" - sha1 "c4a0d51d0fc2fc9c74aa774aa12623b7f2a99db1" + url "https://www.sqlite.org/2014/sqlite-doc-3080704.zip" + version "3.8.7.4" + sha1 "734908373118d61338ca020e3c7dcbd1e0ccd985" end def install |
