Skip to content
Version 1.1 introduces the ability to prepare connections on `sqlitex.Pool`,
improves performance, and improves documentation.

 ### Added

- Added a `sqlitex.NewPool` function
  with support for a `ConnPrepareFunc`
  ([#65](https://github.com/zombiezen/go-sqlite/issues/65)).
- Added a documentation example for `SetCollation`
  ([#64](https://github.com/zombiezen/go-sqlite/issues/64)).

 ### Deprecated

- Deprecated `sqlitex.Open` in favor of `sqlitex.NewPool`.

 ### Fixed

- Speed up internal string conversions
  ([#66](https://github.com/zombiezen/go-sqlite/pull/66)).
  Thank you [@ffmiruz](https://github.com/ffmiruz) for the profiling work!