Skip to content

Releases: chipsenkbeil/typed-path

typed-path 0.3.0

Choose a tag to compare

@chipsenkbeil chipsenkbeil released this 15 Feb 03:50
852c4e8

Notable Changes

  • Add Clone implementation for Box<Path<T>> and Box<Utf8Path<T>>
  • Fix Clone implementation for PathBuf<T> and Utf8PathBuf<T> requiring a
    clone implementation for the encoding, which is not necessary
    (#5)
  • Update Debug implementation for Path<T>, Utf8Path<T>, PathBuf<T>, and
    Utf8PathBuf<T> to no longer require debug implementation for encoding,
    which is not necessary
  • Add label method to encoding implementations, used for debugging purposes

typed-path 0.2.1

Choose a tag to compare

@chipsenkbeil chipsenkbeil released this 12 Dec 22:00
7fb0324

Notable Changes

  • Update README with more UTF8 examples and add proper testing of README examples via doctest

NOTE: This is binary-equivalent to v0.2.0 and only serves as a release to update the documentation shown in crates.io

typed-path 0.2.0

Choose a tag to compare

@chipsenkbeil chipsenkbeil released this 12 Dec 21:58
1ac8d82

Notable Changes

  • Added UTF-8 variants of Path, PathBuf, Components, Component, and other data structures to support str versus [u8]
  • Remove requirements of Clone, Debug, Display, and Sized on Encoding and subsequent implementations UnixEncoding and WindowsEncoding

typed-path 0.1.0

Choose a tag to compare

@chipsenkbeil chipsenkbeil released this 25 Aug 03:17
3657ef9

First release of the library!