unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Guile-SQLite3 0.1.1 released
@ 2020-06-09 21:13 Danny Milosavljevic
  2020-06-09 23:19 ` Aleix Conchillo Flaqué
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Danny Milosavljevic @ 2020-06-09 21:13 UTC (permalink / raw)
  To: guile-user, guile-sources, guix-devel

[-- Attachment #1: Type: text/plain, Size: 748 bytes --]

I’m pleased to announce Guile-SQLite3 version 0.1.1:

  git clone https://notabug.org/guile-sqlite3/guile-sqlite3.git
  cd guile-sqlite3
  git checkout v0.1.1
  git tag -v v0.1.1

The ‘git tag -v’ command checks the authenticity of your checkout.
You may need to retrieve the signing key first:

  gpg --keyserver keys.gnupg.net
  --recv-keys 76CEC6B17274B465C02DB3D9E71A35542C30BAA5

Guile-SQLite3 provides Guile 2.x and Guile 3.x bindings to the SQLite database
engine.
It was originally written by Andy Wingo, with contributions from several
people.

Changes to the previous release are:

* sqlite-finalize: Reset statement when called on cached statement.
* Fix memory management of retrieved blob values.

Danny.

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Guile-SQLite3 0.1.1 released
  2020-06-09 21:13 Guile-SQLite3 0.1.1 released Danny Milosavljevic
@ 2020-06-09 23:19 ` Aleix Conchillo Flaqué
  2020-06-10 15:26 ` Ludovic Courtès
  2020-06-13 15:13 ` Guile-SQLite3 0.1.2 released Danny Milosavljevic
  2 siblings, 0 replies; 4+ messages in thread
From: Aleix Conchillo Flaqué @ 2020-06-09 23:19 UTC (permalink / raw)
  To: Danny Milosavljevic; +Cc: guix-devel, guile-user, guile-sources

[-- Attachment #1: Type: text/plain, Size: 1009 bytes --]

On Tue, Jun 9, 2020 at 2:20 PM Danny Milosavljevic <dannym@scratchpost.org>
wrote:

> I’m pleased to announce Guile-SQLite3 version 0.1.1:
>
>   git clone https://notabug.org/guile-sqlite3/guile-sqlite3.git
>   cd guile-sqlite3
>   git checkout v0.1.1
>   git tag -v v0.1.1
>
> The ‘git tag -v’ command checks the authenticity of your checkout.
> You may need to retrieve the signing key first:
>
>   gpg --keyserver keys.gnupg.net
>   --recv-keys 76CEC6B17274B465C02DB3D9E71A35542C30BAA5
>
> Guile-SQLite3 provides Guile 2.x and Guile 3.x bindings to the SQLite
> database
> engine.
> It was originally written by Andy Wingo, with contributions from several
> people.
>
> Changes to the previous release are:
>
> * sqlite-finalize: Reset statement when called on cached statement.
> * Fix memory management of retrieved blob values.
>
> Danny.
>

Great! This is now available from Guile Homebrew Tap:

$ brew tap aconchillo/guile
$ brew install guile-sqlite3

Aleix

[-- Attachment #2: Type: text/html, Size: 2016 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Guile-SQLite3 0.1.1 released
  2020-06-09 21:13 Guile-SQLite3 0.1.1 released Danny Milosavljevic
  2020-06-09 23:19 ` Aleix Conchillo Flaqué
@ 2020-06-10 15:26 ` Ludovic Courtès
  2020-06-13 15:13 ` Guile-SQLite3 0.1.2 released Danny Milosavljevic
  2 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2020-06-10 15:26 UTC (permalink / raw)
  To: Danny Milosavljevic; +Cc: guix-devel

Hi,

Danny Milosavljevic <dannym@scratchpost.org> skribis:

> I’m pleased to announce Guile-SQLite3 version 0.1.1:
>
>   git clone https://notabug.org/guile-sqlite3/guile-sqlite3.git
>   cd guile-sqlite3
>   git checkout v0.1.1
>   git tag -v v0.1.1

Awesome, thank you!

Ludo’.


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Guile-SQLite3 0.1.2 released
  2020-06-09 21:13 Guile-SQLite3 0.1.1 released Danny Milosavljevic
  2020-06-09 23:19 ` Aleix Conchillo Flaqué
  2020-06-10 15:26 ` Ludovic Courtès
@ 2020-06-13 15:13 ` Danny Milosavljevic
  2 siblings, 0 replies; 4+ messages in thread
From: Danny Milosavljevic @ 2020-06-13 15:13 UTC (permalink / raw)
  To: guile-user, guile-sources, guix-devel

[-- Attachment #1: Type: text/plain, Size: 695 bytes --]

I’m pleased to announce Guile-SQLite3 version 0.1.2:

git clone https://notabug.org/guile-sqlite3/guile-sqlite3.git
cd guile-sqlite3
git checkout v0.1.2
git tag -v v0.1.2

The ‘git tag -v’ command checks the authenticity of your checkout.
You may need to retrieve the signing key first:

  gpg --keyserver keys.gnupg.net --recv-keys 76CEC6B17274B465C02DB3D9E71A35542C30BAA5

Guile-SQLite3 provides Guile 2.x and Guile 3.x bindings to the SQLite database
engine.
It was originally written by Andy Wingo, with contributions from several
people.

Changes compared to the previous release are:

* sqlite-finalize: Allow finalizing the same statement twice again.

Danny.

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-06-13 15:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-09 21:13 Guile-SQLite3 0.1.1 released Danny Milosavljevic
2020-06-09 23:19 ` Aleix Conchillo Flaqué
2020-06-10 15:26 ` Ludovic Courtès
2020-06-13 15:13 ` Guile-SQLite3 0.1.2 released Danny Milosavljevic

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).