Skip to content

Commit

Permalink
Fix jump in Package release version
Browse files Browse the repository at this point in the history
  • Loading branch information
duncaneddy committed May 28, 2024
1 parent 0958189 commit bf7bff4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

## [0.6.0] - 2024-06-27
## [0.5.0] - 2024-06-27

### Added
- Added new `SpaceWeatherData` class to `SpaceWeather` module to store space weather data.
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SatelliteDynamics"
uuid = "0e7c1a32-1b9f-5532-88a4-e668712d6a4c"
authors = ["Duncan Eddy <duncan.eddy@gmail.com> and contributors"]
version = "0.6.0"
version = "0.5.0"

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

2 comments on commit bf7bff4

@duncaneddy
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:

[0.5.0] - 2024-06-27

Added

  • Added new SpaceWeatherData class to SpaceWeather module to store space weather data.
  • Added load_space_weather_data function to SpaceWeather module to load space weather data from file.

Removed

  • Removed GeomagneticData and SolarFluxData classes from SpaceWeather module. These classes are now covered by the SpaceWeatherData class.

Fixed

  • Fixed download sources for Earth Orientation Parameters, Solar Flux, and Geomagnetic data.
  • Fixed ECI to ECEF conversion to properly use dX an dY values from IERS data
    to correct for Earth's rotation.
  • Fixed typos in documentation.

Changed

  • Implemented nightly data download for Earth Orientation Parameters, Solar Flux, and Geomagnetic data so that data is always up-to-date.
  • Improved error message on out-of-range date for Earth Orientation Parameters to provide more clear explanation of the issue.

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

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

Please sign in to comment.