You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here, **data format compatibility** means that all software libraries that implement a
314
-
particular version of the Zarr storage specification are interoperable, in the sense
315
-
that data written by any one library can be read by all others. It is obviously
316
-
desirable to maintain data format compatibility wherever possible. However, if a change
317
-
is needed to the storage specification, and that change would break data format
318
-
compatibility in any way, then the storage specification version number should be
319
-
incremented (e.g., 2 -> 3).
320
-
321
-
The versioning of the Zarr software library is related to the versioning of the storage
322
-
specification as follows. A particular version of the Zarr library will
323
-
implement a particular version of the storage specification. For example, Zarr version
324
-
2.2.0 implements the Zarr storage specification version 2. If a release of the Zarr
325
-
library implements a different version of the storage specification, then the major
326
-
version number of the Zarr library should be incremented. E.g., if Zarr version 2.2.0
327
-
implements the storage spec version 2, and the next release of the Zarr library
328
-
implements storage spec version 3, then the next library release should have version
329
-
number 3.0.0. Note however that the major version number of the Zarr library may not
330
-
always correspond to the spec version number. For example, Zarr versions 2.x, 3.x, and
331
-
4.x might all implement the same version of the storage spec and thus maintain data
332
-
format compatibility, although they will not maintain API compatibility.
333
-
334
-
When to make a release
335
-
~~~~~~~~~~~~~~~~~~~~~~
326
+
^^^^^^^^^^^^^^^^^^^^^^^^^
327
+
328
+
The Zarr library is an implementation of a file format standard defined externally --
329
+
see the `Zarr specifications website <https://zarr-specs.readthedocs.io>`_ for the list of
330
+
Zarr file format specifications.
336
331
337
-
Ideally, any bug fixes that don't change the public API should be released as soon as
338
-
possible. It is fine for a micro release to contain only a single bug fix.
339
332
340
-
When to make a minor release is at the discretion of the core developers. There are no
341
-
hard-and-fast rules, e.g., it is fine to make a minor release to make a single new
342
-
feature available; equally, it is fine to make a minor release that includes a number of
343
-
changes.
333
+
If an existing Zarr format version changes, or a new version of the Zarr format is released, then
334
+
the Zarr library will generally require changes. It is very likely that a new Zarr format will
335
+
require extensive breaking changes to the Zarr library, and so support for a new Zarr format in the
336
+
Zarr library will almost certainly come in new ``major`` release.
337
+
When the Zarr library adds support for a new Zarr format, there may be a period of accelerated
338
+
changes as developers refine newly added APIs and deprecate old APIs. In such a transitional phase
339
+
breaking changes may be more frequent than usual.
344
340
345
-
Major releases obviously need to be given careful consideration, and should be done as
346
-
infrequently as possible, as they will break existing code and/or affect data
347
-
compatibility in some way.
348
341
349
342
Release procedure
350
343
~~~~~~~~~~~~~~~~~
@@ -387,5 +380,7 @@ pre-releases will be available under
387
380
Post-release
388
381
""""""""""""
389
382
390
-
- Review and merge the pull request on the `conda-forge feedstock <https://github.com/conda-forge/zarr-feedstock>`_ that will be automatically generated.
383
+
- Review and merge the pull request on the
384
+
`conda-forge feedstock <https://github.com/conda-forge/zarr-feedstock>`_ that will be
385
+
automatically generated.
391
386
- Create a new "Unreleased" section in the release notes
0 commit comments