Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
matthieugomez committed Mar 27, 2022
1 parent c35e36a commit a6996fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
The MonthlyDates.jl package is licensed under the MIT "Expat" License:
The PeriodicalDates.jl package is licensed under the MIT "Expat" License:

> Copyright (c) 2020: Matthieu Gomez.
>
Expand Down
5 changes: 2 additions & 3 deletions src/PeriodicalDates.jl
Original file line number Diff line number Diff line change
Expand Up @@ -340,8 +340,7 @@ module PeriodicalDates
"""
YearlyDate
YearlyDate wraps a UTInstant{Year} and interprets it according to the proleptic
Gregorian calendar.
YearlyDate wraps a UTInstant{Year}
"""
struct YearlyDate <: TimeType
instant::UTInstant{Year}
Expand All @@ -351,7 +350,7 @@ module PeriodicalDates
"""
`YearlyDate(y) -> YearlyDate`
Construct a `YearlyDate` type by parts. Arguments must be convertible to `Int64`
Construct a `YearlyDate` type. Argument must be convertible to `Int64`
"""
function YearlyDate(y::Int)
YearlyDate(UTY(y))
Expand Down

2 comments on commit a6996fa

@matthieugomez
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 register()

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

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>" a6996fa357c6dc485f56d6720ccd03e1bbb91241
git push origin v2.0.0

Also, note the warning: This looks like a new registration that registers version 2.0.0.
Ideally, you should register an initial release with 0.0.1, 0.1.0 or 1.0.0 version numbers
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.

Please sign in to comment.