Skip to content

Commit

Permalink
Support for AttributeGraphs v0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
filchristou committed Apr 30, 2023
1 parent 433dfb8 commit a69ed65
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "NestedGraphs"
uuid = "03c36417-ddab-428a-818d-5359aee292ef"
authors = ["fchrstou <filippos.christou@ikr.uni-stuttgart.de> and contributors"]
version = "0.1.1"
version = "0.1.2"

[deps]
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
Expand All @@ -16,7 +16,7 @@ AbstractTrees = "0.4"
DocStringExtensions = "0.9"
Graphs = "1"
MetaGraphs = "0.7"
AttributeGraphs = "0.1.0"
AttributeGraphs = "0.2"
SimpleTraits = "0.9"

julia = "1.7"
Expand Down
4 changes: 2 additions & 2 deletions test/attributegraphs.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@testset "attributegraphs" begin
nag = NestedGraph([AttributeGraph(;vvertex_type=String, edge_type=String, graph_type=Dict{Symbol, String}),
AttributeGraph(;vvertex_type=String, edge_type=String, graph_type=Dict{Symbol, String})])
nag = NestedGraph([OAttributeGraph(;vertex_type=String, edge_type=String, graph_type=Dict{Symbol, String}),
OAttributeGraph(;vertex_type=String, edge_type=String, graph_type=Dict{Symbol, String})])

@test all([addvertex!(nag; subgraphs=1) for _ in 1:3])
@test all([addvertex!(nag; subgraphs=2) for _ in 1:5])
Expand Down

2 comments on commit a69ed65

@filchristou
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/82634

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

Please sign in to comment.