diff --git a/crates/radicle/CHANGELOG.md b/crates/radicle/CHANGELOG.md index 112b8bdf..0e0bfe6c 100644 --- a/crates/radicle/CHANGELOG.md +++ b/crates/radicle/CHANGELOG.md @@ -22,6 +22,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Opening database connections requires specification of a configuration. `radicle::Profile` conveniently provides methods that supply the configuration from `radicle::Profile::config`. +- The `TryFrom` implementation for `Home` is removed in favor of using + the `Home::new` and `Home::load` methods. ### Removed diff --git a/crates/radicle/src/profile.rs b/crates/radicle/src/profile.rs index 7282da12..417ede19 100644 --- a/crates/radicle/src/profile.rs +++ b/crates/radicle/src/profile.rs @@ -556,14 +556,6 @@ pub struct Home { path: PathBuf, } -impl TryFrom for Home { - type Error = io::Error; - - fn try_from(home: PathBuf) -> Result { - Self::new(home) - } -} - impl Home { /// Creates the Radicle Home directories. ///