Snap for 6533464 from 7e445b763fb9b2704caeed57e5c58aba8b3a1e20 to sdk-release

Change-Id: I0476d73ca54e5500741cd23d7d817cbdf785d8f2
diff --git a/.cargo_vcs_info.json b/.cargo_vcs_info.json
index 6e425e4..7405439 100644
--- a/.cargo_vcs_info.json
+++ b/.cargo_vcs_info.json
@@ -1,5 +1,5 @@
 {
   "git": {
-    "sha1": "3ded2f87af33e2ff8c722836ab0f35a98c11ec92"
+    "sha1": "fa787a3be5a9a6dcc47425c7298fed5a16f06afe"
   }
 }
diff --git a/Cargo.toml b/Cargo.toml
index 7b80f9f..630f1e7 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -12,7 +12,7 @@
 
 [package]
 name = "libloading"
-version = "0.6.1"
+version = "0.6.2"
 authors = ["Simonas Kazlauskas <libloading@kazlauskas.me>"]
 build = "build.rs"
 description = "A safer binding to platform’s dynamic library loading utilities"
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 22e1845..bd1114b 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,6 +1,6 @@
 [package]
 name = "libloading"
-version = "0.6.1"
+version = "0.6.2"
 authors = ["Simonas Kazlauskas <libloading@kazlauskas.me>"]
 build = "build.rs"
 description = "A safer binding to platform’s dynamic library loading utilities"
diff --git a/METADATA b/METADATA
index ce7ba3b..01da0ad 100644
--- a/METADATA
+++ b/METADATA
@@ -9,11 +9,11 @@
     type: GIT
     value: "https://github.com/nagisa/rust_libloading"
   }
-  version: "0.6.1"
+  version: "0.6.2"
   license_type: NOTICE
   last_upgrade_date {
     year: 2020
-    month: 4
-    day: 16
+    month: 5
+    day: 5
   }
 }
diff --git a/build.rs b/build.rs
index c41a14a..fdc446d 100644
--- a/build.rs
+++ b/build.rs
@@ -34,7 +34,7 @@
         // found any libraries that have to be linked to on other platforms.
         // What happens if the executable is not linked up dynamically?
         "openbsd" | "bitrig" | "netbsd" | "macos" | "ios" => {}
-        "solaris" => {}
+        "solaris" | "illumos" => {}
         "haiku" => {}
         "redox" => {}
         "fuchsia" => {}
diff --git a/src/changelog.rs b/src/changelog.rs
index 68b6c54..952eb5e 100644
--- a/src/changelog.rs
+++ b/src/changelog.rs
@@ -2,6 +2,11 @@
 
 // TODO: for the next breaking release rename `Error::LoadLibraryW` to `Error::LoadLibraryExW`.
 
+/// Release 0.6.2 (2020-05-06)
+///
+/// * Fixed building of this library on Illumos.
+pub mod r0_6_2 {}
+
 /// Release 0.6.1 (2020-04-15)
 ///
 /// * Introduced a new method [`os::windows::Library::load_with_flags`];