-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCHANGES
87 lines (58 loc) · 2.13 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
npy Changelog
=============
Here you can see the full list of changes between each npy release.
Version 0.3.5
-------------
Bugfix release, released on January 14th, 2021
- Many NpzFile.Writer methods were made private in the previous release,
breaking the API. This release reverts this change.
Version 0.3.4
-------------
Released on January 14th, 2021
- Fixed a bug with reading NPY files with `long` dimensions produced by
Python 2.X. Thanks to @roblovelock! See PR #6 on GitHub.
- Fixed dependencies. The wildcard version specification made the library
unusable in Maven, see issue #8 on GitHub.
- Bumped Kotlin version to 1.4.21, replaced deprecated methods.
Version 0.3.3
-------------
Bugfix release, released on September 28th, 2016
- Fixed tests on Windows.
- Fixed reading and writing string arrays.
Version 0.3.2
-------------
Released on September 23rd, 2016
- Fixed reading large (> 2G) NPY and NPZ files.
- Ensured the produced NPY file has no trailing gibberish.
- Changed `NpyFile.write` to automatically choose the appropriate
format version.
Version 0.3.1
-------------
Released on September 21th, 2016
- Changed `NpyFile.write` and `NpzFile.Writer.write` to work in
constant amount of memory.
- Allowed writing arrays using a non-native byte order.
- Dropped Guava dependency.
Version 0.3.0
-------------
Released on September 20th, 2016
- Added support for reading and writing arbitrary-dimensional arrays.
Version 0.2.1
-------------
Bugfix release, released on March 23rd, 2016
- Fixed metadata in NPY files created by `NpyFile.write`. See
issue #4 on GitHub.
Version 0.2.0
-------------
Released on February 17th, 2016
- Unified reading and writing API of `NpzFile`.
- Added `NpzFile.Reader.introspect` for exploring the metadata of an
NPZ file without reading whole arrays.
- Fixed `NpyFile` behaviour for arrays with strings of different lengths.
Version 0.1.0
-------------
Initial release, released on February 3rd, 2016
- Sketched reading and writing API. This is not yet finalized and can
change in the future releases.
- Only 1D non-structured arrays of types 'b', 'i', 'u', 'f' and 'S'
are supported.