Skip to content

Commit

Permalink
Bump to v0.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Liozou committed Mar 3, 2023
1 parent 1511e08 commit c5f1b79
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion 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.9.5"
version = "0.9.6"

[deps]
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
Expand Down
9 changes: 5 additions & 4 deletions src/precompile.jl
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ end
macro _precompile_g(N, str)
g = gensym("graph")
ret = quote
PeriodicGraph{$N}(4)
$g = PeriodicGraph($str)
$g == parse(PeriodicGraph, string($g))
PeriodicGraph{$N}($str) == parse(PeriodicGraph{$N}, string($g))
Expand Down Expand Up @@ -40,10 +41,10 @@ macro _precompile_g(N, str)
rings($g, 3)
strong_rings($g, 3)
strong_erings($g, 3)
RingAttributions($g, true, 3)[1][1]
RingAttributions($g, 3)[1][1]
RingAttributions($g, true)[1][1]
RingAttributions($g)[1][1]
collect(RingAttributions($g, true, 3)[1][1])
first(RingAttributions($g, 3)[1][1])
collect(RingAttributions($g, true)[1])
first(RingAttributions($g)[1])
end
if N != 0
append!(ret.args, (quote
Expand Down

2 comments on commit c5f1b79

@Liozou
Copy link
Owner Author

@Liozou Liozou commented on c5f1b79 Mar 3, 2023

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

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

Please sign in to comment.