Releases: ShindouMihou/siopao
Releases · ShindouMihou/siopao
v1.0.6
Changelog
- Adds
Reader.EachChar
method to read the file character by character. - Exposes
File.MkdirParent
to make the directories of the path. - MIT License is permanent and irrevocable is now explicitly stated under README.
Installation
go get github.com/ShindouMihou/[email protected]
Documentations
You can read the documentation for siopao
over at your development environment, or through:
v1.0.5
Changelog
- Adds
Recurse
method to recursively scan files in a directory. - Adds
IsDir
andUncachedIsDir
to check whether theFile
is a directory.
Installation
go get github.com/ShindouMihou/[email protected]
Documentations
You can read the documentation for siopao
over at your development environment, or through:
v1.0.4
Changelog
File
is now concurrent-safe (as it doesn't shareos.File
with other methods inside anymore).
Installation
go get github.com/ShindouMihou/[email protected]
Documentations
You can read the documentations for siopao
over at your development environment, or through:
v1.0.3
Changelog
- Fixed a bug where
MoveTo
didn't copy the file name properly (due to a wrongly supplied base path). - Truncation now happens directly on
openRead
, which means streams will now truncate properly. - Fixed a minor behavior problem with
Move
andMoveTo
where the new destination's folders aren't being created. - Added more tests to test out the rename and copying.
Installation
go get github.com/ShindouMihou/[email protected]
Documentations
You can read the documentations for siopao
over at your development environment, or through:
v1.0.2
Changelog
- Added
File.copy
,File.move
,File.rename
,File.moveTo
methods. - Added support for
bufio.Reader
andio.Reader
as write values (in both Writer and theFile
API). - Added support for
File.Delete
andFile.DeleteRecursively
. - Added support for
File.CopyAndHash
andFile.Checksum
that boasts support forsha512
,sha256
andmd5
checksum. - Added MIT license.
Installation
go get github.com/ShindouMihou/[email protected]
Documentations
You can read the documentations for siopao
over at your development environment, or through:
v1.0.1
Create LICENSE
v1.0.0
feat: add documentation to the writer