Skip to content

Latest commit

 

History

History
44 lines (29 loc) · 1.25 KB

CHANGELOG.md

File metadata and controls

44 lines (29 loc) · 1.25 KB

Changelog

Release v2.0.0

  • Breaking! Changed signature for chown method. now it receives one more argument recursive that is placed before followSymlink. Thus is may be incompatible with 1.x.x version

Release v1.2.0

  • Added new methods to Path struct:
    • driveName that returns Windows drive name
    • stripDrive that returns path without drive part
    • stripExt that returns path without extension
  • Updated doc on withExt method, to clarify differents wtih std.path.withExtension.

Release v1.1.0

  • Added new method chown

Release v1.0.0

  • Add tempFile static method that allows to open temporary files.
  • Remove deprecated execute method. Use TheProcess instead

Release v0.1.7

  • Added new param to Path.parent method - absolute, that is by default set to true (to keep backward compatibility). If this param is set to false, then path will not be converted to absolute path before computing parent path, thus it will be possible to get non-absolute parent path from non-absolute path. For example:

    Path("parent", "child").parent == Path.current.join("parent");
    Path("parent", "child").parent(false) == Path("parent");