All Versions
5
Latest Version
1.1
Avg Release Cycle
1229 days
Latest Release
3362 days ago

Changelog History

  • v1.1 Changes

    February 10, 2015
    • ๐Ÿ›  Fix unicode NameError on Python 3. (Appeared only on OSes with unicode paths.)(Thanks to Hanlle Nicolas, Aaron Lelevier, Dmitry Dygalo.)
    • ๐Ÿ›  Fix test on MacOSX: temp dir contains symlink. (wrightmx)
    • ๐Ÿ›  Fix walk error in arg top_down. (Gabriel Reyla == sesas)
    • ๐Ÿ›  Fix isdir() issue on Windows. (Gabriel Reyla)
    • ๐Ÿ›  Fix needs_update with string argument. (#15)
    • ๐Ÿ”„ Change license to MIT. It's at least as free as the Python license but doesn't contain irrelevant Python-specific language.
  • v1.0 Changes

    April 05, 2013
    • Migrate repository to Git and Github. (https://github.com/mikeorr/Unipath)
    • ๐Ÿ‘Œ Supports Python 2.6, 2.7, 3.2, and 3.3. No longer suppots Python 2.5 or older.
    • Python 3 compatibility. (Ricardo Duarte)
    • โœ… Convert tests to py.test. (Ricardo Duarte)
    • โœ‚ Delete old PEP 335 reference documentation. To recover, check out Git rev 7575cdf, directory "doc/reference".
    • Undocument Path.copy_tree(). It was never implemented.
    • ๐Ÿ›  Fix Path.remove and Path.rmtree for symlinks. (Joel Rosdahl)
  • v0.2.1 Changes

    May 19, 2008
    • โœ‚ Delete spurious references to deleted unipath.platform package.
  • v0.2.0 Changes

    • ๐Ÿ“‡ Rename Path to AbstractPath, and FSPath to Path. FSPath remains as an alias for backward compatibility.
    • ๐Ÿ‘ Allow integers in constructor.
    • Path.mkdir() checks whether the directory exists first.
    • โœ… Test suite now uses nose instead of unittest.
    • "+" operator returns concatenated path rather than string.
    • Bugfix in Path.rel_path_to().
    • Thanks to Roman [email protected] for patches and suggestions.
    • โœ‚ Delete Path.symlink(); use Path.write_link() instead -- note that the arg is the desination rather than the source!
    • Path.make_relative_link_to() is a shortcut for self.write_link(self.rel_path_to(dst)).
    • โœ‚ Delete the platform package. See the tests if you need non-native path syntax.`
  • v0.1.0 Changes

    January 28, 2007
    • ๐ŸŽ‰ Initial release.