From b01f9ab563d5812b3857ef9fb4051e2773364653 Mon Sep 17 00:00:00 2001 From: David Widmann Date: Sat, 19 Feb 2022 23:17:45 +0100 Subject: [PATCH 1/2] Define alias as `const` --- src/Libtask.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Libtask.jl b/src/Libtask.jl index 59795b98..9ef4732a 100644 --- a/src/Libtask.jl +++ b/src/Libtask.jl @@ -16,6 +16,6 @@ include("tapedtask.jl") include("tarray.jl") include("tref.jl") -CTask = TapedTask +const CTask = TapedTask end From 79779e9e92a82d5f9ce9007142774eeb5d5cbac0 Mon Sep 17 00:00:00 2001 From: David Widmann Date: Sat, 19 Feb 2022 23:18:41 +0100 Subject: [PATCH 2/2] Bump version --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index a1db18f3..6bdc66c1 100644 --- a/Project.toml +++ b/Project.toml @@ -3,7 +3,7 @@ uuid = "6f1fad26-d15e-5dc8-ae53-837a1d7b8c9f" license = "MIT" desc = "Tape based task copying in Turing" repo = "https://github.com/TuringLang/Libtask.jl.git" -version = "0.6.9" +version = "0.6.10" [deps] IRTools = "7869d1d1-7146-5819-86e3-90919afe41df"