Skip to content

Commit

Permalink
Merge pull request #7 from Deduction42/DEV
Browse files Browse the repository at this point in the history
Bumped version due to narrowing Julia support window
  • Loading branch information
Deduction42 authored Sep 25, 2024
2 parents eeccf95 + 7954b68 commit 2536068
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
matrix:
version:
- '1.10'
- '1.9'
- '1.7'
- 'pre'
os:
- ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name = "TimeRecords"
uuid = "b543fe20-4c68-4b5f-af79-4641a0d39826"
authors = ["Ruben Gonzalez <[email protected]> and contributors"]
version = "1.0.2"
version = "1.1.0"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"

[compat]
julia = "1.9"
julia = "1.7"
StaticArrays = "1"

[extras]
Expand Down

4 comments on commit 2536068

@Deduction42
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

Bugfixes

Resolved an issue where getinner(ts, interval) would give incorrect answers if the interval lies completely between two samples of ts

Breaking Changes

Now requries Julia 1.7 due to usage of keepat!

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

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 v1.1.0 -m "<description of version>" 25360682ed754ad473b0d7c1b5afe34590a8bb14
git push origin v1.1.0

@Deduction42
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

Release notes:

##Bugfixes
Resolved an issue where getinner(ts, interval) would give incorrect answers if the interval lies completely between two samples of ts

##Breaking Changes
Now requries Julia 1.7 due to usage of keepat!

@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 updated: JuliaRegistries/General/116005

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 v1.1.0 -m "<description of version>" 25360682ed754ad473b0d7c1b5afe34590a8bb14
git push origin v1.1.0

Please sign in to comment.