diff options
-rw-r--r-- | CHANGELOG | 5 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | src/lib.rs | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,6 +1,11 @@ CHANGELOG ========= +v0.2.1 (2020-09-20): + Changes: + + * Remove dynamic link to 'openssl' and allow static link to 'libgit2'. + v0.2.0 (2020-08-30): Breaking changes: @@ -1,6 +1,6 @@ [package] name = "git-suggestion" -version = "0.2.0" +version = "0.2.1" edition = "2018" [dependencies] @@ -28,4 +28,4 @@ mod suggestion; pub use suggestion::for_suggestion; -const VERSION: &'static str = "0.2.0"; +const VERSION: &'static str = "0.2.1"; |