Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update version to 0.6.3 #543

Merged
merged 4 commits into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
name = "IceFloeTracker"
uuid = "04643c7a-9ac6-48c5-822f-2704f9e70bd3"
authors = ["bradford roarr <[email protected]> and contributors"]
version = "0.6.2"
authors = [
"Carlos Paniagua <[email protected]>",
"Timothy Divoll <[email protected]>",
"John Gerrard Holland <[email protected]>",
"bradford roarr <[email protected]>",
cpaniaguam marked this conversation as resolved.
Show resolved Hide resolved
"Daniel Watkins <[email protected]>",
"Maria Isabel Restrepo <[email protected]>",
]
version = "0.6.3"

[deps]
AxisArrays = "39de3d68-74b9-583c-8d2d-e117c070f3a9"
Expand Down
3 changes: 2 additions & 1 deletion test/test-misc.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ println("------------------------------------------------
# Define a test to check the version number of the package matches the version number in the Project.toml file. Use the get_version_from_toml function to get the version number from the Project.toml file. The version number is then compared to the version number of the package. If the version numbers match, the test passes. If the version numbers do not match, the test fails.

@testset "Version number" begin
@test IceFloeTracker.get_version_from_toml(dirname((@__DIR__))) == IFTVERSION
VERSION = IceFloeTracker.get_version_from_toml(dirname((@__DIR__)))
@test isa(VERSION, VersionNumber)
end

Loading