From 4387b69f55560c4f9a607a7308bc42470ec5fe5d Mon Sep 17 00:00:00 2001 From: Jonas Isensee Date: Sun, 28 Jul 2024 09:30:52 +0200 Subject: [PATCH] changelog & version --- CHANGELOG.md | 12 ++++++++++++ Project.toml | 2 +- src/loadsave.jl | 1 - 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9eaf9971..52e7e877 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.4.51 + - remove Unicode normalization support due to excessive performance loss + - rework of header message internals + - Implement addition and loading of attributes to datasets and groups + - Add preliminary `Dataset` structure and API + - cleanup tests + - remove `Pkg` dependency + - fix `Upgrade` for Singleton types + +## 0.4.50 + - Don't hide exception data during loading and saving (#569) + ## 0.4.49 - update compat bounds - add support Zstdcompression diff --git a/Project.toml b/Project.toml index 4198197c..53f69d91 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "JLD2" uuid = "033835bb-8acc-5ee8-8aae-3f567f8a3819" -version = "0.4.50" +version = "0.4.51" [deps] FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549" diff --git a/src/loadsave.jl b/src/loadsave.jl index d002a2bc..af2ba341 100644 --- a/src/loadsave.jl +++ b/src/loadsave.jl @@ -136,7 +136,6 @@ macro load(filename, vars...) throw(ArgumentError("filename argument must be a string literal unless variable names are specified")) end # Load all variables in the top level of the file - readexprs = Expr[] vars = Symbol[] f = jldopen(filename) try