From 748628e1db8568db8a54b71dec24f26bb9b1b4ef Mon Sep 17 00:00:00 2001 From: Carlos Paniagua Date: Mon, 21 Aug 2023 08:56:42 -0400 Subject: [PATCH] fix: update version number for registration --- Project.toml | 2 +- src/IceFloeTracker.jl | 2 +- test/test-misc.jl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index 44b4a7be..4360cf1c 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "IceFloeTracker" uuid = "04643c7a-9ac6-48c5-822f-2704f9e70bd3" authors = ["bradford roarr and contributors"] -version = "0.2.0" +version = "0.2.1" [deps] AxisArrays = "39de3d68-74b9-583c-8d2d-e117c070f3a9" diff --git a/src/IceFloeTracker.jl b/src/IceFloeTracker.jl index d5813eed..8aaf66fd 100644 --- a/src/IceFloeTracker.jl +++ b/src/IceFloeTracker.jl @@ -67,7 +67,7 @@ include("special_strels.jl") const sk_measure = PyNULL() const getlatlon = PyNULL() -const IFTVERSION = VersionNumber(0, 2, 0) +const IFTVERSION = VersionNumber(0, 2, 1) function __init__() copy!(sk_measure, pyimport_conda("skimage.measure", "scikit-image=0.20.0")) diff --git a/test/test-misc.jl b/test/test-misc.jl index 1afe1420..9b6f2a3c 100644 --- a/test/test-misc.jl +++ b/test/test-misc.jl @@ -1,3 +1,3 @@ println("------------------------------------------------ ----------------- Misc. Tests ------------------") -@test IFTVERSION == VersionNumber(0, 2, 0) +@test IFTVERSION == VersionNumber(0, 2, 1)