You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 911B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ### 1.0.1
  2. * use `setImmediate` instead of `nextTick`
  3. ### 1.0.0
  4. * `new FdSlicer(fd, options)` must now be `fdSlicer.createFromFd(fd, options)`
  5. * fix behavior when `end` is 0.
  6. * fix `createWriteStream` when using `createFromBuffer`
  7. ### 0.4.0
  8. * add ability to create an FdSlicer instance from a Buffer
  9. ### 0.3.2
  10. * fix write stream and read stream destroy behavior
  11. ### 0.3.1
  12. * write stream: fix end option behavior
  13. ### 0.3.0
  14. * write stream emits 'progress' events
  15. * write stream supports 'end' option which causes the stream to emit an error
  16. if a maximum size is exceeded
  17. * improve documentation
  18. ### 0.2.1
  19. * Update pend dependency to latest bugfix version.
  20. ### 0.2.0
  21. * Add read and write functions
  22. ### 0.1.0
  23. * Add `autoClose` option and `ref()` and `unref()`.
  24. ### 0.0.2
  25. * Add API documentation
  26. * read stream: create buffer at last possible moment
  27. ### 0.0.1
  28. * Initial release