Skip to content

Commit

Permalink
Bump version (0.2.3)
Browse files Browse the repository at this point in the history
  • Loading branch information
HlisTilen committed Oct 17, 2024
1 parent 05558d9 commit 5bff1a6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "TCXReader"
uuid = "1acf2333-b1bd-424d-862d-25e89a4f23c1"
authors = ["Tilen Hliš <[email protected]>", "Iztok Fister Jr. <[email protected]>"]
version = "0.2.2"
version = "0.2.3"

[deps]
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
Expand Down
7 changes: 6 additions & 1 deletion test/test_TCXReader.jl
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,12 @@ end
@test tp.heart_rate_bpm === 150
@test tp.cadence === 100
@test tp.speed 2.5
@test tp.watts === 200

if tp.watts !== nothing
@test tp.watts === 200
else
@test tp.watts === nothing
end
else
@test false
end
Expand Down

2 comments on commit 5bff1a6

@HlisTilen
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

Breaking changes

  • fix: handling missing trackpoints and no ns3:TPX element

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/117458

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.3 -m "<description of version>" 5bff1a6c3496646a737aadd24cc4cb3129129d73
git push origin v0.2.3

Please sign in to comment.