From 74c07835676867cd810d7e1d581469d7b13a9c4d Mon Sep 17 00:00:00 2001 From: pat-alt Date: Wed, 13 Nov 2024 15:17:31 +0100 Subject: [PATCH 1/2] removed strong typing on vector elements --- src/CounterfactualExplanations.jl/threads/evaluate.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CounterfactualExplanations.jl/threads/evaluate.jl b/src/CounterfactualExplanations.jl/threads/evaluate.jl index 06e6a1d..4aae545 100644 --- a/src/CounterfactualExplanations.jl/threads/evaluate.jl +++ b/src/CounterfactualExplanations.jl/threads/evaluate.jl @@ -40,7 +40,7 @@ function TaijaBase.parallelize( args = zip(counterfactuals, meta_data) # Preallocate: - evaluations = Vector{Vector}(undef, length(args)) + evaluations = Vector(undef, length(args)) # Verbosity: if verbose From 705b91f6719018bd00531b92d00a6ebfa3507fe1 Mon Sep 17 00:00:00 2001 From: pat-alt Date: Wed, 13 Nov 2024 15:19:12 +0100 Subject: [PATCH 2/2] updated changelog and version --- CHANGELOG.md | 8 +++++++- Project.toml | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 29aeba2..48a5088 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Version [1.0.4] - 2024-11-06 +## Version [1.1.1] - 2024-11-13 + +### Changed + +- Removed a small bug introduced in `v1.1.0`. [#14] + +## Version [1.1.0] - 2024-11-06 ### Changed diff --git a/Project.toml b/Project.toml index ad4eeb3..efee23b 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "TaijaParallel" uuid = "bf1c2c22-5e42-4e78-8b6b-92e6c673eeb0" authors = ["Patrick Altmeyer "] -version = "1.1.0" +version = "1.1.1" [deps] CounterfactualExplanations = "2f13d31b-18db-44c1-bc43-ebaf2cff0be0"