Skip to content

Commit

Permalink
Bug fix to octocorner angle wrapping
Browse files Browse the repository at this point in the history
  • Loading branch information
sefffal committed Jan 25, 2024
1 parent e056ae3 commit ec93487
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
@@ -1,7 +1,7 @@
name = "Octofitter"
uuid = "daf3887e-d01a-44a1-9d7e-98f15c5d69c9"
authors = ["William Thompson <will.thompson@outlook.com>", "Jensen Lawrence", "Dori Blakely"]
version = "2.0.0"
version = "2.0.1"

[deps]
AbstractMCMC = "80f14c24-f653-4e6a-9b94-39d6b0f70001"
Expand Down
2 changes: 1 addition & 1 deletion ext/OctofitterPairPlotsExt.jl
Expand Up @@ -100,7 +100,7 @@ function Octofitter.octocorner(
# Do any data conversions
dat = vec(chain_notinternal[pk])
if k == "i" || k == "Ω" || k == "ω"
dat = rem2pi.(rad2deg.(dat), RoundDown)
dat = rad2deg.(rem2pi.(dat, RoundDown))
end
push!(table_cols, pks => dat)
end
Expand Down

2 comments on commit ec93487

@sefffal
Copy link
Owner Author

Choose a reason for hiding this comment

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

@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/99587

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

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 v2.0.1 -m "<description of version>" ec934879d121dacd9bbf98ba1a2d93d2cb40d63c
git push origin v2.0.1

Please sign in to comment.