From 554aa5a5c664bb567cc0f57cbc2ff3fc4faf3546 Mon Sep 17 00:00:00 2001 From: Ritesh Chitlangi Date: Thu, 18 Nov 2021 20:17:33 +0800 Subject: [PATCH] minor version bump --- epp-client/Cargo.toml | 2 +- epp-client/src/lib.rs | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/epp-client/Cargo.toml b/epp-client/Cargo.toml index 380c376..901ebb7 100644 --- a/epp-client/Cargo.toml +++ b/epp-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "epp-client" -version = "0.3.0" +version = "0.3.1" edition = "2018" license = "MIT" authors = ["Ritesh Chitlangi "] diff --git a/epp-client/src/lib.rs b/epp-client/src/lib.rs index 608db87..421fced 100644 --- a/epp-client/src/lib.rs +++ b/epp-client/src/lib.rs @@ -85,6 +85,9 @@ //! .for_each(|chk| println!("Domain: {}, Available: {}", chk.domain.name, chk.domain.available)); //! //! } +//! +//! // Close the connection +//! client.logout().await.unwrap(); //! ``` //! //! The output would look similar to the following