Skip to content

Releases: blackbeam/rust-mysql-simple

v12.0.1

27 Jul 12:30

Choose a tag to compare

params! macro improved.

// now this:
params! { "foo" => foo, "bar" => baz };
// is equal to this:
params! { foo, "bar" => baz };

v12.0.0

26 Jul 08:46

Choose a tag to compare

  • switch to mysql_common crate.

v11.3.1

18 Jul 08:39

Choose a tag to compare

  • Version requirements relaxed for stable dependencies.

v11.3.0

03 Jul 14:53

Choose a tag to compare

v11.2.0

21 Jun 18:46

Choose a tag to compare

Changes:

  • New stmt_cache_size option and connection URL parameter (fix #105)
  • Improved documentation and panic messages for FromRow trait

v11.1.2

01 Jun 16:44

Choose a tag to compare

@klingtnet made Pool::new more generic via impl<T: AsRef<str>> From<T> for Opts.

v11.1.1

27 May 08:44

Choose a tag to compare

@petrochenkov fixed build on nightly rust (see #99).

v11.1.0

14 May 18:54

Choose a tag to compare

  • bind_address option implemented. (fix #97)
  • tcp_connect_timeout implemented on windows.

v11.0.0

29 Apr 09:59

Choose a tag to compare

  • Serde updated to v1.0.
  • Serde now used by default and rustc-serialze hidden behind rustc-serialize feature.
  • Unserialized renamed to Deserialized.

v10.0.0

26 Feb 16:04

Choose a tag to compare

Changes:

  1. #92 fixed.
  2. uuid & chrono versions bumped.