Some documentation and changelog fixes

This commit is contained in:
kyren 2018-10-01 05:07:10 -04:00
parent f8665ba334
commit 51339ecb1d
3 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,6 @@
## [0.15.1]
- Docs and changelog fixes
## [0.15.0]
- Implement MultiValue conversion up to 16
- Small fix to prevent leaking on errors in metatable creation
@ -5,6 +8,9 @@
now split into `create_static_userdata` and `create_nonstatic_userdata`
because there are certain limitations on `create_nonstatic_userdata` that mean
that nonstatic is not always what you want.
- API incompatible change: In order to support the new non-'static scoped
UserData, the API for UserData methods has changed, and UserDataMethods is now
a trait rather than a concrete type.
- Added pkg-config feature that can be used if builtin-lua is disabled to use
pkg-config to find lua5.3 externally (thanks @acrisci!).
- API incompatible change: Add conversions for i128 and u128 and change the

View file

@ -82,7 +82,7 @@ pub enum Error {
/// details.
///
/// [`AnyUserData`]: struct.AnyUserData.html
/// [`UserDataMethods`]: struct.UserDataMethods.html
/// [`UserDataMethods`]: trait.UserDataMethods.html
UserDataTypeMismatch,
/// An [`AnyUserData`] immutable borrow failed because it is already borrowed mutably.
///

View file

@ -34,7 +34,7 @@
//! [`ToLuaMulti`]: trait.ToLuaMulti.html
//! [`FromLuaMulti`]: trait.FromLuaMulti.html
//! [`UserData`]: trait.UserData.html
//! [`UserDataMethods`]: struct.UserDataMethods.html
//! [`UserDataMethods`]: trait.UserDataMethods.html
// Deny warnings inside doc tests / examples. When this isn't present, rustdoc doesn't show *any*
// warnings at all.