From f3d7cd132db864b7ac4b7798386c4ec96ddc8c81 Mon Sep 17 00:00:00 2001 From: szymonwieloch Date: Sun, 9 Jun 2019 18:19:18 +0200 Subject: [PATCH] Minor changes before release, version change --- CHANGELOG.md | 37 ------------------------------------- Cargo.toml | 2 +- README.md | 6 +++++- src/lib.rs | 2 +- 4 files changed, 7 insertions(+), 40 deletions(-) delete mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 16b05e1..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,37 +0,0 @@ -# rust-dlopen changelog - -## 0.1.0 - -- Initial version. Three complete APIs, tested - -## 0.1.1 - -- Removed warning during compilation in some rare cases -- Fixed code formatting using rustfmt - -## 0.1.2 - -- Fixed synchronization issues on Windows - -## 0.1.3 - -- Updated documentation - it is easier for users to understand the value of the library. - -## 0.1.4 - -- Added badges showing the library quality. -- Fixed collision of the "Result" name. - Other possible sources of collisions removed too. -- Fixed small typos in error messages. - -## 0.1.5 - -- Fixed possible name collision in generated code- big thanks to kzys for finding it! - - -## 0.1.6 -- Fixed typo in "which" (docs) -- Fixed build that stopped working for rust 1.18.0 -- Added code coverage (codedov.io), added badge -- Fixed tests on certain MAC OS platforms - added recursive search - for a built test library. \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 68e844b..d64ad73 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dlopen" -version = "0.1.6" +version = "0.1.7" authors = ["Szymon Wieloch "] description = "Library for opening and operating on dynamic link libraries (also known as shared objects or shared libraries)." keywords = [ diff --git a/README.md b/README.md index 248c3fe..ad6e7dd 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,11 @@ dlopen = "0.1" [Cargo documentation](https://docs.rs/dlopen) # License -This code is licensed under MIT license. +This code is licensed under [MIT](./LICENSE) license. + +# Changelog + +[GitHub changelog](https://github.com/szymonwieloch/rust-dlopen/releases) # Acknowledgement diff --git a/src/lib.rs b/src/lib.rs index 6077926..711b0a7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -58,7 +58,7 @@ dlopen = "0.1" [Examples](../examples) -[Changelog](../CHANGELOG.md) +[Changelog](https://github.com/szymonwieloch/rust-dlopen/releases) # License This code is licensed under [MIT](../LICENSE) license.