diesel v0.8.2 Release Notes

Release Date: 2016-11-22 // over 7 years ago
  • ๐Ÿ”„ Changed

    • ๐Ÿ›  Fixed support for nightlies later than 2016-11-07

    • โœ‚ Removed support for nightlies earlier than 2016-11-07

    • Calls to infer_table_from_schema! will need to be wrapped in a module if called more than once. This change is to work around further limitations of the Macros 1.1 system. Example:

      mod infer_users {
          infer_table_from_schema!("dotenv:DATABASE_URL", "users");
      }
      pub use self::infer_users::*;