Skip to content

Releases: petamoriken/float16

v3.4.4

05 Sep 13:50
v3.4.4
771b009
Compare
Choose a tag to compare
  • Update README.md
  • Fix a broken link for the algorithm details & Update the information in package.json (2eb4786)
  • Fix index.d.ts (0727b02)
  • Stop using @babel/preset-env (948b34e)
    • Babel transform is only used for CommonJS
  • Make the codes more solid (31a9d9a, f66063d)

v3.4.3

04 Sep 02:59
v3.4.3
68133c0
Compare
Choose a tag to compare
  • Update dev dependencies
  • Update Babel config for pre-transpiled JavaScript files (0b55cce)
  • Change entry points for Deno

v3.4.2

29 Aug 00:14
v3.4.2
fc8f071
Compare
Choose a tag to compare
  • Fix: Add missing types (2a8d4b0)
  • Optimize: Don't copy Array in Float16Array constructor (355f5c4)

v3.4.1

27 Aug 20:25
v3.4.1
9f7c7f3
Compare
Choose a tag to compare
  • Fix: Correct parts that differed from specifications (c79faa3)
  • Update: Make DataView check more solid (e7fc812)
  • Update README.md

v3.4.0

24 Aug 13:31
v3.4.0
c865ed0
Compare
Choose a tag to compare

v3.3.3

22 Aug 13:27
v3.3.3
6f8c156
Compare
Choose a tag to compare
  • Refactoring
  • Update README.md

v3.3.2

21 Aug 10:01
Compare
Choose a tag to compare

The dependencies are gone from this package!

v3.3.1

20 Aug 10:39
Compare
Choose a tag to compare
  • Update not to copy buffer in Float16Array#set (c991146)

v3.3.0

12 Aug 01:22
Compare
Choose a tag to compare
  • Add browser/float16.mjs file to use ES Modules in browsers (b59a4f7)

v3.2.3

07 Aug 14:31
Compare
Choose a tag to compare
  • More solid Implementation part3 (#450)

    • Float16Array constructor respects input TypedArray.[[ViewedArrayBuffer]]'s @@species
    • Float16Array constructor prioritizes Iterable processing over ArrayLike processing
    • Float16Array#set does nothing if input is a Iterable without ArrayLike
    • Float16Array#[@@iterator] is the same function as Float16Array#values
    • Float16Array#{map, filter, slice, subarray} is more solid implementation