From 17ff262bcc687ba4166023c9a71de10c4e866a3cde29564513230512d6c71b69 Mon Sep 17 00:00:00 2001 From: Sebastian Riedel Date: Tue, 6 Jun 2017 14:15:17 +0000 Subject: [PATCH] Accepting request 500518 from devel:languages:perl:autoupdate automatic update OBS-URL: https://build.opensuse.org/request/show/500518 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Mojo-SQLite?expand=0&rev=14 --- Mojo-SQLite-2.001.tar.gz | 3 --- Mojo-SQLite-2.002.tar.gz | 3 +++ perl-Mojo-SQLite.changes | 9 +++++++++ perl-Mojo-SQLite.spec | 5 +++-- 4 files changed, 15 insertions(+), 5 deletions(-) delete mode 100644 Mojo-SQLite-2.001.tar.gz create mode 100644 Mojo-SQLite-2.002.tar.gz diff --git a/Mojo-SQLite-2.001.tar.gz b/Mojo-SQLite-2.001.tar.gz deleted file mode 100644 index e9df695..0000000 --- a/Mojo-SQLite-2.001.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0b6d8632f78bc23c339b167e93ea01ab3d632eeac90f0a3428875bb91c1f28a1 -size 43682 diff --git a/Mojo-SQLite-2.002.tar.gz b/Mojo-SQLite-2.002.tar.gz new file mode 100644 index 0000000..5a0928e --- /dev/null +++ b/Mojo-SQLite-2.002.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70b46e6de9f5c2408cdec4d4f666aaa9f0801e276878c8c77ab802124f97e5eb +size 44046 diff --git a/perl-Mojo-SQLite.changes b/perl-Mojo-SQLite.changes index 0ea3d14..f703340 100644 --- a/perl-Mojo-SQLite.changes +++ b/perl-Mojo-SQLite.changes @@ -1,3 +1,12 @@ +------------------------------------------------------------------- +Fri Jun 2 06:11:27 UTC 2017 - coolo@suse.com + +- updated to 2.002 + see /usr/share/doc/packages/perl-Mojo-SQLite/Changes + + 2.002 2017-06-01 14:16:34 EDT + - Add no_wal option to prevent enabling WAL mode on connection. + ------------------------------------------------------------------- Sun Feb 19 07:00:27 UTC 2017 - coolo@suse.com diff --git a/perl-Mojo-SQLite.spec b/perl-Mojo-SQLite.spec index 4f602da..7d8caf4 100644 --- a/perl-Mojo-SQLite.spec +++ b/perl-Mojo-SQLite.spec @@ -17,7 +17,7 @@ Name: perl-Mojo-SQLite -Version: 2.001 +Version: 2.002 Release: 0 %define cpan_name Mojo-SQLite Summary: Tiny Mojolicious Wrapper for Sqlite @@ -83,7 +83,8 @@ hash reference. All I/O and queries are performed synchronously. However, the "Write-Ahead Log" journal is enabled for all connections, allowing multiple processes to read and write concurrently to the same database file (but only one can -write at a time). See http://sqlite.org/wal.html for more information. +write at a time). You can prevent this mode from being enabled by passing +the option 'no_wal'. See http://sqlite.org/wal.html for more information. # Performed concurrently my $pid = fork || die $!;