File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name = "libloading"
3
3
# When bumping
4
4
# * Don’t forget to add an entry to `src/changelog.rs`
5
5
# * If bumping a incompatible version, adjust documentation in `src/lib.rs`
6
- version = " 0.6.3 "
6
+ version = " 0.6.4 "
7
7
authors = [
" Simonas Kazlauskas <[email protected] >" ]
8
8
license = " ISC"
9
9
repository = " https://github.com/nagisa/rust_libloading/"
Original file line number Diff line number Diff line change 3
3
// TODO: for the next breaking release rename `Error::LoadLibraryW` to `Error::LoadLibraryExW`.
4
4
// TODO: for the next breaking release use `RTLD_LAZY | RTLD_LOCAL` by default on unix.
5
5
6
+ /// Release 0.6.4 (2020-10-10)
7
+ ///
8
+ /// * Remove use of `build.rs` making it easier to build `libloading` without cargo. It also
9
+ /// almost halves the build time of this crate.
10
+ pub mod r0_6_4 { }
11
+
6
12
/// Release 0.6.3 (2020-08-22)
7
13
///
8
14
/// * Improve documentation, allowing to view all of the os-specific functionality from
13
19
///
14
20
/// [`os::windows::Library::this`]: crate::os::windows::Library::this
15
21
/// [`library_filename`]: crate::library_filename
22
+ pub mod r0_6_3 { }
16
23
17
24
/// Release 0.6.2 (2020-05-06)
18
25
///
You can’t perform that action at this time.
0 commit comments