Skip to content

Commit

Permalink
Switch to Julia v1.9 minimum
Browse files Browse the repository at this point in the history
  • Loading branch information
richardreeve committed Jul 21, 2024
1 parent a01fa58 commit 1711c8b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
matrix:
julia-version:
- '1.8'
- '1.9'
- '1'
os:
- ubuntu-latest
Expand Down
10 changes: 5 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,21 @@ DataFrames = "0.21, 0.22, 1.0"
Distances = "0.10"
EcoBase = "0.1"
Git = "1"
InteractiveUtils = "1.8"
InteractiveUtils = "1.9"
JuliaFormatter = "1"
LinearAlgebra = "1.8"
LinearAlgebra = "1.9"
Logging = "1"
Missings = "0.4, 1.0"
Phylo = "0.4, 0.5"
Pkg = "1.8"
Pkg = "1.9"
RCall = "0.13, 0.14"
RecipesBase = "0.6, 0.7, 0.8, 1"
Requires = "^1"
ResearchSoftwareMetadata = "0.1.1"
SpatialEcology = "0.9"
Statistics = "1.8"
Statistics = "1.9"
StatsBase = "0.32, 0.33, 0.34"
julia = "1.8"
julia = "1.9"

[[author_details]]
name = "Richard Reeve"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ installed with `add`. For example on Julia v1.10:

## Project Status

The package is confirmed to build and work against Julia v1.8 and the current
The package is confirmed to build and work against Julia v1.9 and the current
release and the latest release on Linux, macOS, and Windows. It is also tested
against nightly.

Expand Down
14 changes: 7 additions & 7 deletions docs/diversity.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ also new, and may need further improvements.

## Install

The package is registered in the `General` registry on v1.x and so can be installed with `add`. For example on Julia v1.8:
The package is registered in the `General` registry on v1.x and so can be installed with `add`. For example on Julia v1.10:

```julia
(@v1.8) pkg> add Diversity
(@v1.10) pkg> add Diversity
Resolving package versions...
Updating `~/.julia/environments/v1.8/Project.toml`
[d3d5718d] + Diversity v0.5.8
Updating `~/.julia/environments/v1.8/Manifest.toml`
[d3d5718d] + Diversity v0.5.8
Updating `~/.julia/environments/v1.10/Project.toml`
[d3d5718d] + Diversity v0.5.15
Updating `~/.julia/environments/v1.10/Manifest.toml`
[d3d5718d] + Diversity v0.5.15

(@v1.8) pkg>
(@v1.10) pkg>
```

## Usage
Expand Down

2 comments on commit 1711c8b

@richardreeve
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
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/111457

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 v0.5.15 -m "<description of version>" 1711c8b764827360a1052a8af656e014cd9b9c23
git push origin v0.5.15

Please sign in to comment.