Skip to content

Commit

Permalink
🔖 Version 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ronisbr committed Jul 2, 2024
1 parent a854c61 commit a9f6ed4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ uuid = "c2b69894-ea78-4e2b-9ba6-cedbbc3d14d7"
license = "MIT"
desc = "Orbit propagators for the SatelliteToolbox.jl ecosystem."
authors = ["Ronan Arraes Jardim Chagas <[email protected]>"]
version = "0.3.1"
version = "0.3.2"

[deps]
Crayons = "a8cc5b0e-0ffa-5ad4-8c14-923d3ee1735f"
Expand Down

2 comments on commit a9f6ed4

@ronisbr
Copy link
Member Author

@ronisbr ronisbr commented on a9f6ed4 Jul 2, 2024

Choose a reason for hiding this comment

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

@JuliaRegistrator register

Release notes:

  • The functions propagate, propagate!, propagate_to_epoch, and propagate_to_epoch! of Propagators can now receive a vector of instants and the propagation will happen in multiple threads, if possible. The number of tasks can be configured using the keyword ntasks. If ntasks = 1, the algorithm falls back to the single thread version, leading to no overhead.
  • We added support for the objects defined in Dates in the propagation functions. propagate, propagate!, and step! can now receive an object of type Dates.Period or Dates.CompoundPeriod. On the other hand, propagate_to_epoch and propagate_to_epoch! now supports an epoch specified using DateTime.
  • We implemented dedicate copy to all propagators defined here, leading to a substantial gain compared to the previous version that relies on deepcopy.
  • We increase the number of precompiled function signatures.

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

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.3.2 -m "<description of version>" a9f6ed47e38d3cbab685ae0bf813b9a721334bc6
git push origin v0.3.2

Please sign in to comment.