Skip to content

Commit

Permalink
Implemented package extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
filchristou committed Jun 13, 2023
1 parent a69ed65 commit 73f28da
Show file tree
Hide file tree
Showing 15 changed files with 820 additions and 86 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
with:
version: '1.8.1'
version: '1.9'
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Build and deploy
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup julia
uses: julia-actions/setup-julia@v1
with:
version: '1.8.1'
version: '1.9'
- run: julia -e 'using Pkg; pkg"add [email protected]"'
- run: julia -e 'using Run; Run.prepare_test()'
- run: julia -e 'using Run; Run.test()'
Expand All @@ -25,4 +25,4 @@ jobs:
with:
file: ./lcov.info
flags: unittests
name: codecov-umbrella
name: codecov-umbrella
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mynotes.norg
docs/build/
*.cov
Manifest.toml
/Manifest.toml
test/livetest.jl
14 changes: 10 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
name = "NestedGraphs"
uuid = "03c36417-ddab-428a-818d-5359aee292ef"
authors = ["fchrstou <[email protected]> and contributors"]
version = "0.1.2"
version = "0.2"

[deps]
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
AttributeGraphs = "d091dd56-f8c5-469d-b7f7-ff847498145f"
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
MetaGraphs = "626554b9-1ddb-594c-aa3c-2596fe9399a5"
SimpleTraits = "699a6c99-e7fa-54fc-8d76-47d257e15c1d"

[weakdeps]
MetaGraphs = "626554b9-1ddb-594c-aa3c-2596fe9399a5"
AttributeGraphs = "d091dd56-f8c5-469d-b7f7-ff847498145f"

[extensions]
NestedGraphsMetaGraphsExt = "MetaGraphs"
NestedGraphsAttributeGraphsExt = "AttributeGraphs"

[compat]
AbstractTrees = "0.4"
DocStringExtensions = "0.9"
Expand All @@ -19,7 +25,7 @@ MetaGraphs = "0.7"
AttributeGraphs = "0.2"
SimpleTraits = "0.9"

julia = "1.7"
julia = "1.9"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

*A package to handle nested graphs.*

> `NestedGraphs.jl` requires Julia v1.9+
`NestedGraphs.jl` is a young project that aims at easy and type-stable graph analysis for nested graphs.
This package is in an early development stage and might break often.

Expand Down
Loading

2 comments on commit 73f28da

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

Release notes:

Support for package extensions without backward compatibility.

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

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>" 73f28da0b7e28e818fa53075d568e541eb0fcd2e
git push origin v0.2.0

Please sign in to comment.