Skip to content

Latest commit

 

History

History
84 lines (61 loc) · 2.4 KB

CHANGELOG.md

File metadata and controls

84 lines (61 loc) · 2.4 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.


0.6.0 - 2024-12-11

Changed

  • support patch 2.2.
  • bump simdjson to 3.11.2 (was 3.10.1).

0.5.0 - 2024-09-13

Changed

  • support patch 2.13.
  • bump simdjson to 3.10.1 (was 3.9.4).

0.4.3 - 2024-06-23

Fixed

  • crash when using FromJson with an empty type or when type is not found.

Changed

  • bump simdjson to 3.9.4 (was 3.9.1).

0.4.2 - 2024-05-17

Fixed

  • issue when using FromJson to get a double from an integer would always return 0.

0.4.1 - 2024-05-15

Fixed

  • issue when using ToJson where array of ref<T> was converted to [ [ {}, ...] ] instead of [ {}, ... ].

0.4.0 - 2024-04-26

Added

  • optional indent argument when formatting with ToString().

Changed

  • using ToString() will now format to minified Json by default.

0.3.0 - 2024-04-22

Added

  • support for type Uint64 with JsonObject and JsonArray.
  • methods FromJson and ToJson to transform data two-way.

0.2.0 - 2024-04-16

Added

  • declaration of module RedData.Json with all Json related features.

0.1.0 - 2024-04-09

Added

  • parse/create/format Json data.