Skip to content

Commit

Permalink
Lower bound to julia 1.4 and tag version 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Liozou committed Dec 28, 2020
1 parent 3e3f2db commit a44165f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Documentation: https://github.com/JuliaCI/Appveyor.jl
environment:
matrix:
- julia_version: 1.0
- julia_version: 1.4
- julia_version: 1.5
- julia_version: nightly
platform:
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ language: julia
notifications:
email: false
julia:
- 1.0
- 1.4
- 1.5
- nightly
os:
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PeriodicGraphs"
uuid = "18c5b727-b240-4874-878a-f2e242435bab"
authors = ["Lionel Zoubritzky [email protected]"]
version = "0.1.3"
version = "0.2.0"

[deps]
LightGraphs = "093fc24a-ae57-5d10-9952-331d41423f4d"
Expand All @@ -11,7 +11,7 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
[compat]
LightGraphs = "1.3"
StaticArrays = "0.12"
julia = "1"
julia = "1.4"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
4 changes: 4 additions & 0 deletions src/precompile.jl
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ function _precompile_()
@assert Base.precompile(Tuple{typeof(swap_axes!),PeriodicGraph{i},Vector{Int}})
@assert Base.precompile(Tuple{typeof(swap_axes!),PeriodicGraph{i},NTuple{i,Int}})
@assert Base.precompile(Tuple{typeof(vertex_permutation),PeriodicGraph{i},Vector{Any}})

for j in 1:3
@assert Base.precompile(Tuple{typeof(PeriodicGraphs.change_dimension),Type{PeriodicGraph{i}},PeriodicGraph{j}})
end
end
end

Expand Down

2 comments on commit a44165f

@Liozou
Copy link
Owner Author

@Liozou Liozou commented on a44165f Dec 28, 2020

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/27025

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

Please sign in to comment.