Releases: mxcl/Path.swift
Releases · mxcl/Path.swift
0.7.0
Added dynamic-members, so you can do, eg.
try Path.home.Library.Preferences.foo.mkdir()
0.6.0
delete()
is a noop if there is no file at that path
mkpath()
removed, now mkdir()
takes a mkdir(.p)
option
0.5.1
Merge pull request #13 from mxcl/more-docs
Improved documentation; Fixes #12
0.5.0
- Removed
Path.replaceContents
due to it violating the responsibility boundary of our library, use String.write
instead
- Swift 5 support.
- We test against Swift 5 snapshots now.
0.4.4
Fix copy(into:) overwrite mode
Seems like Linux Foundation has a bug
I checked, seems fixed in Swift 5. But added a swift version check se we can verify and if not report the bug.
0.4.2
Merge pull request #8 from mxcl/better-deploy
Better deploy
0.4.1
ls can now ignore hidden files. Note: API will change in future releases.
0.4.0
Added some more common directories, eg. Path.documents
using the Free Desktop specification for Linux.
0.3.0
Minor changes in behavior for Path.mtime
, thus the minor bump.