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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596
|
.. Copyright (c) 2016-2025 The Regents of the University of Michigan
.. Part of GSD, released under the BSD 2-Clause License.
Change Log
==========
`GSD <https://github.com/glotzerlab/gsd>`_ releases follow `semantic versioning
<https://semver.org/>`_.
4.x
---
4.0.0 (2025-06-26)
^^^^^^^^^^^^^^^^^^
*Fixed:*
* Type hints for ``HoomdTrajectory._read_frame`` and downstream methods are now correct
(`#417 <https://github.com/glotzerlab/gsd/pull/417>`__).
* Sync changes to disk on macOS
(`#429 <https://github.com/glotzerlab/gsd/pull/429>`__).
* Sync index entries to disk before returning from ``flush``
(`#429 <https://github.com/glotzerlab/gsd/pull/429>`__).
* Work around macOS bug that mysteriously allocated 16 MB of extra disk blocks beyond the end
of the file
(`#429 <https://github.com/glotzerlab/gsd/pull/429>`__).
*Changed:*
* No longer test with clang 10, 11, or 12
(`#422 <https://github.com/glotzerlab/gsd/pull/422>`__).
* [breaking] ``end_frame``, ``find_chunk``, ``find_matching_chunk_names``, and ``read_chunk`` no longer
implicitly call ``flush``. The caller must manually call ``flush`` (or close the file) before
chunks can be read. This behavior extends to the high level ``gsd.hoomd`` Python API
(`#429 <https://github.com/glotzerlab/gsd/pull/429>`__).
* Set the default write buffer to 1 MB
(`#429 <https://github.com/glotzerlab/gsd/pull/429>`__).
*Removed:*
* ``index_entries_to_buffer``
(`#429 <https://github.com/glotzerlab/gsd/pull/429>`__).
3.x
---
3.4.2 (2024-11-13)
^^^^^^^^^^^^^^^^^^
*Fixed:*
* Make NumPy 2.0 requirement optional
(`#405 <https://github.com/glotzerlab/gsd/pull/405>`__).
3.4.1 (2024-10-21)
^^^^^^^^^^^^^^^^^^
*Fixed:*
* Prevent downgrading file versions when opening in write mode.
3.4.0 (2024-10-18)
^^^^^^^^^^^^^^^^^^
*Added:*
* ``GSD_TYPE_CHARACTER`` chunk type for string data - valid in file layer versions 2.1 and later
(`#391 <https://github.com/glotzerlab/gsd/pull/391>`__).
*Changed:*
* The ``log`` dictionary in a hoomd frame now accepts string values. ``read_log`` correspondingly
produces a NumPy array of variable length strings
(`#391 <https://github.com/glotzerlab/gsd/pull/391>`__).
* Require NumPy >= 2.0
(`#391 <https://github.com/glotzerlab/gsd/pull/391>`__).
3.3.2 (2024-09-06)
^^^^^^^^^^^^^^^^^^
*Added:*
* Support Python 3.13
(`#388 <https://github.com/glotzerlab/gsd/pull/388>`__).
*Removed:*
* Support for Python 3.9
(`#388 <https://github.com/glotzerlab/gsd/pull/388>`__).
3.3.1 (2024-08-19)
^^^^^^^^^^^^^^^^^^
*Changed:*
* Improved build instructions
(`#376 <https://github.com/glotzerlab/gsd/pull/376>`__).
3.3.0 (2024-05-29)
^^^^^^^^^^^^^^^^^^
*Added:*
* Support numpy 2.0
(`#367 <https://github.com/glotzerlab/gsd/pull/367>`__).
*Changed:*
* Navigate the documentation with arrow keys
(`#365 <https://github.com/glotzerlab/gsd/pull/365>`__).
* Add button to copy code snippets from the documentation
(`#365 <https://github.com/glotzerlab/gsd/pull/365>`__).
* Remove singularity reference from the documentation
(`#365 <https://github.com/glotzerlab/gsd/pull/365>`__).
*Removed:*
* Support for Python 3.8
(`#367 <https://github.com/glotzerlab/gsd/pull/367>`__).
3.2.1 (2024-01-22)
^^^^^^^^^^^^^^^^^^
*Fixed:*
* Write all pending index entries to the file when ``gsd_flush()`` is called after
``gsd_write_chunk()`` and before ``gsd_end_frame()``
(`#319 <https://github.com/glotzerlab/gsd/pull/319>`__).
* Readthedocs builds with pandas 2.2.0
(`#322 <https://github.com/glotzerlab/gsd/pull/322>`__).
* Import without seg fault when built with CMake on macOS
(`#323 <https://github.com/glotzerlab/gsd/pull/323>`__).
* Internal cached data remains valid when users modify frames obtained by indexing trajectories
(`#324 <https://github.com/glotzerlab/gsd/pull/324>`__).
*Changed:*
* Provide support via GitHub discussions
(`#308 <https://github.com/glotzerlab/gsd/issues/308>`__).
* Use ruff
(`#317 <https://github.com/glotzerlab/gsd/pull/317>`__).
* Perform fewer implicit flushes when using the ``gsd.hoomd`` python API
(`#325 <https://github.com/glotzerlab/gsd/pull/325>`__).
3.2.0 (2023-09-27)
^^^^^^^^^^^^^^^^^^
*Added:*
* Support Python 3.12
(`#283 <https://github.com/glotzerlab/gsd/issues/283>`__).
3.1.1 (2023-08-03)
^^^^^^^^^^^^^^^^^^
*Fixed:*
* Raise a ``FileExistsError`` when opening a file that already exists with ``mode = 'x'``
(`#270 <https://github.com/glotzerlab/gsd/issues/270>`__).
3.1.0 (2023-07-28)
^^^^^^^^^^^^^^^^^^
*Fixed:*
* ``hoomd.read_log`` no longer triggers a numpy deprecation warning
(`#267 <https://github.com/glotzerlab/gsd/pull/267>`__).
*Added:*
* ``HOOMDTrajectory.flush`` - flush buffered writes on an open ``HOOMDTrajectory``
(`#266 <https://github.com/glotzerlab/gsd/pull/266>`__).
3.0.1 (2023-06-20)
^^^^^^^^^^^^^^^^^^
*Fixed:*
* Prevent ``ValueError: signal only works in main thread of the main interpreter`` when importing
gsd in a non-main thread (`#257 <https://github.com/glotzerlab/gsd/issues/257>`__).
3.0.0 (2023-06-16)
^^^^^^^^^^^^^^^^^^
*Added:*
* ``gsd.version.version`` - version string identifier. PEP8 compliant name replaces ``__version__``.
* ``GSDFile.flush`` - flush write buffers (C API ``gsd_flush``)
(`#237 <https://github.com/glotzerlab/gsd/pull/237>`__).
* ``GSDFile.maximum_write_buffer_size`` - get/set the write buffer size
(C API ``gsd_get_maximum_write_buffer_size`` / ``gsd_set_maximum_write_buffer_size``)
(`#237 <https://github.com/glotzerlab/gsd/pull/237>`__).
* ``GSDFile.index_entries_to_buffer`` - get/set the write buffer size
(C API ``index_entries_to_buffer`` / ``index_entries_to_buffer``)
(`#237 <https://github.com/glotzerlab/gsd/pull/237>`__).
* On importing `gsd`, install a ``SIGTERM`` handler that calls ``sys.exit(1)``
(`#237 <https://github.com/glotzerlab/gsd/pull/237>`__).
*Changed:*
* ``write_chunk`` buffers writes across frames to increase performance
(`#237 <https://github.com/glotzerlab/gsd/pull/237>`__).
* Use *Doxygen* and *breathe* to generate C API documentation in Sphinx
(`#237 <https://github.com/glotzerlab/gsd/pull/237>`__).
*Removed:*
* ``gsd.__version__`` - use ``gsd.version.version``.
* ``gsd.hoomd.Snapshot`` - use ``gsd.hoomd.Frame``
(`#249 <https://github.com/glotzerlab/gsd/pull/249>`__).
* ``gsd.hoomd.HOOMDTrajectory.read_frame`` - use ``gsd.hoomd.HOOMDTrajectory.__getitem__``
(`#249 <https://github.com/glotzerlab/gsd/pull/249>`__).
* The file modes ``'wb'``, ``'wb+'``, ``'rb'``, ``'rb+'``, ``'ab'``, ``'xb'``, and ``'xb+'``. Use
``'r'``, ``'r+'``, ``'w'``, ``'x'``, or ``'a'``
(`#249 <https://github.com/glotzerlab/gsd/pull/249>`__).
2.x
---
2.9.0 (2023-05-19)
^^^^^^^^^^^^^^^^^^
*Added:*
* File modes ``'r'``, ``'r+'``, ``'w'``, ``'x'``, and ``'a'``
(`#238 <https://github.com/glotzerlab/gsd/pull/238>`__).
*Changed:*
* Test on gcc9, clang10, and newer
(`#235 <https://github.com/glotzerlab/gsd/pull/235>`__).
* Test and provide binary wheels on Python 3.8 and newer
(`#235 <https://github.com/glotzerlab/gsd/pull/235>`__).
*Deprecated:*
* File modes ``'wb'``, ``'wb+'``, ``'rb'``, ``'rb+'``, ``'ab'``, ``'xb'``, and ``'xb+'``
(`#238 <https://github.com/glotzerlab/gsd/pull/238>`__).
* [C API] ``GSD_APPEND`` file open mode
(`#238 <https://github.com/glotzerlab/gsd/pull/238>`__).
v2.8.1 (2023-03-13)
^^^^^^^^^^^^^^^^^^^
*Fixed:*
* Reduce memory usage in most use cases.
* Reduce likelihood of data corruption when writing GSD files.
v2.8.0 (2023-02-24)
^^^^^^^^^^^^^^^^^^^
*Added:*
* ``gsd.hoomd.read_log`` - Read log quantities from a GSD file.
* ``gsd.hoomd.Frame`` class to replace ``gsd.hoomd.Snapshot``.
*Changed:*
* Improved documentation.
*Deprecated:*
* ``gsd.hoomd.Snapshot``.
v2.7.0 (2022-11-30)
^^^^^^^^^^^^^^^^^^^
*Added*
* Support Python 3.11.
v2.6.1 (2022-11-04)
^^^^^^^^^^^^^^^^^^^
*Fixed:*
* Default values are now written to frame N (N != 0) when non-default values
exist in frame 0.
* Data chunks can now be read from files opened in 'wb', 'xb', and 'ab' modes.
v2.6.0 (2022-08-19)
^^^^^^^^^^^^^^^^^^^
*Changed:*
* Raise an error when writing a frame with duplicate types.
v2.5.3 (2022-06-22)
^^^^^^^^^^^^^^^^^^^
*Fixed*
* Support Python >=3.6.
v2.5.2 (2022-04-15)
^^^^^^^^^^^^^^^^^^^
*Fixed*
* Correctly handle non-ASCII characters on Windows.
* Document that the ``fname`` argument to ``gsd_`` C API functions is UTF-8
encoded.
v2.5.1 (2021-11-17)
^^^^^^^^^^^^^^^^^^^
*Added*
* Support for Python 3.10.
* Support for clang 13.
v2.5.0 (2021-10-13)
^^^^^^^^^^^^^^^^^^^
*Changed*
* Improved documentation.
*Deprecated*
- ``HOOMDTrajectory.read_frame`` - use indexing (``trajectory[index]``) to access frames from a
trajectory.
v2.4.2 (2021-04-14)
^^^^^^^^^^^^^^^^^^^
*Added*
* MacOS and Windows wheels on PyPI.
*Fixed*
- Documented array shapes for angles, dihedrals, and impropers.
v2.4.1 (2021-03-11)
^^^^^^^^^^^^^^^^^^^
*Added*
* Support macos-arm64.
*Changed*
* Stop testing with clang 4-5, gcc 4.8-6.
v2.4.0 (2020-11-11)
^^^^^^^^^^^^^^^^^^^
*Changed*
* Set ``gsd.hoomd.ConfigurationData.dimensions`` default based on ``box``'s
:math:`L_z` value.
*Fixed*
* Failure in ``test_fl.py`` when run by a user and GSD was installed by root.
v2.3.0 (2020-10-30)
^^^^^^^^^^^^^^^^^^^
*Added*
* Support clang 11.
* Support Python 3.9.
*Changed*
* Install unit tests with the Python package.
*Fixed*
* Compile error on macOS 10.15.
v2.2.0 (2020-08-05)
^^^^^^^^^^^^^^^^^^^
*Added*
* Command line convenience interface for opening a GSD file.
v2.1.2 (2020-06-26)
^^^^^^^^^^^^^^^^^^^
*Fixed*
* Adding missing ``close`` method to ``HOOMDTrajectory``.
* Documentation improvements.
v2.1.1 (2020-04-20)
^^^^^^^^^^^^^^^^^^^
*Fixed*
* List defaults in ``gsd.fl.open`` documentation.
v2.1.0 (2020-02-27)
^^^^^^^^^^^^^^^^^^^
*Added*
* Shape specification for sphere unions.
v2.0.0 (2020-02-03)
^^^^^^^^^^^^^^^^^^^
*Note*
* This release introduces a new file storage format.
* GSD >= 2.0 can read and write to files created by GSD 1.x.
* Files created or upgraded by GSD >= 2.0 can not be opened by GSD < 1.x.
*Added*
* The ``upgrade`` method converts a GSD 1.0 file to a GSD 2.0 file in place.
* Support arbitrarily long chunk names (only in GSD 2.0 files).
*Changed*
* ``gsd.fl.open`` accepts ``None`` for ``application``, ``schema``, and
``schema_version`` when opening files for reading.
* Improve read latency when accessing files with thousands of chunk names in
a frame (only for GSD 2.0 files).
* Buffer small writes to improve write performance.
* Improve performance and reduce memory usage in read/write modes ('rb+', 'wb+'
and ('xb+').
* **C API**: functions return error codes from the ``gsd_error`` enum. v2.x
integer error codes differ from v1.x, use the enum to check. For example:
``if (retval == GSD_ERROR_IO)``.
* Python, Cython, and C code must follow strict style guidelines.
*Removed*
* ``gsd.fl.create`` - use ``gsd.fl.open``.
* ``gsd.hoomd.create`` - use ``gsd.hoomd.open``.
* ``GSDFile`` v1.0 compatibility mode - use ``gsd.fl.open``.
* ``hoomdxml2gsd.py``.
*Fixed*
* Allow more than 127 data chunk names in a single GSD file.
v1.x
----
v1.10.0 (2019-11-26)
^^^^^^^^^^^^^^^^^^^^
* Improve performance of first frame write.
* Allow pickling of GSD file handles opened in read only mode.
* Removed Cython-generated code from repository. ``fl.pyx`` will be cythonized
during installation.
v1.9.3 (2019-10-04)
^^^^^^^^^^^^^^^^^^^
* Fixed preprocessor directive affecting Windows builds using setup.py.
* Documentation updates
v1.9.2 (2019-10-01)
^^^^^^^^^^^^^^^^^^^
* Support chunk sizes larger than 2GiB
v1.9.1 (2019-09-23)
^^^^^^^^^^^^^^^^^^^
* Support writing chunks wider than 255 from Python.
v1.9.0 (2019-09-18)
^^^^^^^^^^^^^^^^^^^
* File API: Add ``find_matching_chunk_names()``
* ``HOOMD`` schema 1.4: Add user defined logged data.
* ``HOOMD`` schema 1.4: Add ``type_shapes`` specification.
* pytest >= 3.9.0 is required to run unit tests.
* ``gsd.fl.open`` and ``gsd.hoomd.open`` accept objects implementing
``os.PathLike``.
* Report an error when attempting to write a chunk that fails to allocate a
name.
* Reduce virtual memory usage in ``rb`` and ``wb`` open modes.
* Additional checks for corrupt GSD files on open.
* Synchronize after expanding file index.
v1.8.1 (2019-08-19)
^^^^^^^^^^^^^^^^^^^
* Correctly raise ``IndexError`` when attempting to read frames before the first
frame.
* Raise ``RuntimeError`` when importing ``gsd`` in unsupported Python versions.
v1.8.0 (2019-08-05)
^^^^^^^^^^^^^^^^^^^
* Slicing a HOOMDTrajectory object returns a view that can be used to directly
select frames from a subset or sliced again.
* raise ``IndexError`` when attempting to read frames before the first frame.
* Dropped support for Python 2.
v1.7.0 (2019-04-30)
^^^^^^^^^^^^^^^^^^^
* Add ``hpmc/sphere/orientable`` to HOOMD schema.
* HOOMD schema 1.3
v1.6.2 (2019-04-16)
^^^^^^^^^^^^^^^^^^^
* PyPI binary wheels now support numpy>=1.9.3,<2
v1.6.1 (2019-03-05)
^^^^^^^^^^^^^^^^^^^
* Documentation updates
v1.6.0 (2018-12-20)
^^^^^^^^^^^^^^^^^^^
* The length of sliced HOOMDTrajectory objects can be determined with the
built-in ``len()`` function.
v1.5.5 (2018-11-28)
^^^^^^^^^^^^^^^^^^^
* Silence numpy deprecation warnings
v1.5.4 (2018-10-04)
^^^^^^^^^^^^^^^^^^^
* Add ``pyproject.toml`` file that defines ``numpy`` as a proper build
dependency (requires pip >= 10)
* Reorganize documentation
v1.5.3 (2018-05-22)
^^^^^^^^^^^^^^^^^^^
* Revert ``setup.py`` changes in v1.5.2 - these do not work in most
circumstances.
* Include ``sys/stat.h`` on all architectures.
v1.5.2 (2018-04-04)
^^^^^^^^^^^^^^^^^^^
* Close file handle on errors in ``gsd_open``.
* Always close file handle in ``gsd_close``.
* ``setup.py`` now correctly pulls in the numpy dependency.
v1.5.1 (2018-02-26)
^^^^^^^^^^^^^^^^^^^
* Documentation fixes.
v1.5.0 (2018-01-18)
^^^^^^^^^^^^^^^^^^^
* Read and write HPMC shape state data.
v1.4.0 (2017-12-04)
^^^^^^^^^^^^^^^^^^^
* Support reading and writing chunks with 0 length. No schema changes are
necessary to support this.
v1.3.0 (2017-11-17)
^^^^^^^^^^^^^^^^^^^
* Document ``state`` entries in the HOOMD schema.
* No changes to the gsd format or reader code in v1.3.
v1.2.0 (2017-02-21)
^^^^^^^^^^^^^^^^^^^
* Add ``gsd.hoomd.open()`` method which can create and open hoomd gsd files.
* Add ``gsd.fl.open()`` method which can create and open gsd files.
* The previous create/class ``GSDFile`` instantiation is still supported
for backward compatibility.
v1.1.0 (2016-10-04)
^^^^^^^^^^^^^^^^^^^
* Add special pairs section pairs/ to HOOMD schema.
* HOOMD schema version is now 1.1.
v1.0.1 (2016-06-15)
^^^^^^^^^^^^^^^^^^^
* Fix compile error on more strict POSIX systems.
v1.0.0 (2016-05-24)
^^^^^^^^^^^^^^^^^^^
Initial release.
|