Skip to content

Commit

Permalink
bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
CarloLucibello committed Jul 25, 2024
1 parent b40e833 commit 68190f5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ ChainRulesCore = "1"
DataStructures = "0.18"
Flux = "0.14"
Functors = "0.4.1"
GNNGraphs = "1.0"
GNNGraphs = "1.1"
LinearAlgebra = "1"
MacroTools = "0.5"
MLUtils = "0.4"
Expand Down
11 changes: 7 additions & 4 deletions docs/src/dev.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Developer Notes

## Develop Monorepo
## Develop and Managing the Monorepo

### Development
GraphNeuralNetworks.jl is package hosted in a monorepo that contains multiple packages.
The GraphNeuralNetworks.jl package depends on GNNGraphs.jl, also hosted in the same monorepo.

Expand All @@ -11,10 +12,12 @@ pkg> activate .
pkg> dev ./GNNGraphs
```

Each PR should update the version number in the Porject.toml file of each involved package if needed by semnatic versioning. For instance, when adding new features GNNGraphs could move from "1.17.5" to "1.18.0-DEV". The "DEV" will be removed when the package is tagged and released.
### Versions and Tagging
Each PR should update the version number in the Porject.toml file of each involved package if needed by semnatic versioning. For instance, when adding new features GNNGraphs could move from "1.17.5" to "1.18.0-DEV". The "DEV" will be removed when the package is tagged and released. Pay also attention to updating
the compat bounds, e.g. GraphNeuralNetworks might require a newer version of GNNGraphs.


For generating the documentation locally instead
### Generate Documentation Locally
For generating the documentation locally
```
cd docs
julia
Expand Down

0 comments on commit 68190f5

Please sign in to comment.