Skip to content

Commit

Permalink
🔖 Version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ronisbr committed Apr 16, 2023
1 parent 51e8b2a commit b72ba8b
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 = "ba14ac17-bfc9-4710-a76f-b32930ef2339"
license = "MIT"
desc = "The SGP4/SDP4 orbit propagator for Julia"
authors = ["Ronan Arraes Jardim Chagas <ronisbr@gmail.com>"]
version = "1.0.1"
version = "2.0.0"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand Down

2 comments on commit b72ba8b

@ronisbr
Copy link
Member 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:

  • We removed the field Ω1 from the structure Sgp4Propagator because it was not being used in the propagation.
  • The structure Sgp4Propagator is not a Base.@kwdef anymore. We also added custom constructors to help initialize an instance with uninitiated fields. Hence, if one creates the SGP4 structure directly, i.e., without using sgp4_init, this version is breaking.
  • We added the function sgp4_init! to initialize a SGP4 propagator in-place, avoiding unnecessary allocations.
  • The code was slightly improved, leading to a 5% speed gain in initialization and 4% speed gain in propagation.

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

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.0 -m "<description of version>" b72ba8bcb3d315f27b831c0c3ed98e8b3f1dce06
git push origin v2.0.0

Please sign in to comment.