From 53d998e0b1ee998ee5066b8009baeb5fb1d9a9be Mon Sep 17 00:00:00 2001 From: Carlo Lucibello Date: Thu, 25 Jul 2024 18:24:46 +0200 Subject: [PATCH] update --- Project.toml | 5 +++-- docs/src/dev.md | 2 ++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index d3a60b0b7..773239a10 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "GraphNeuralNetworks" uuid = "cffab07f-9bc2-4db1-8861-388f63bf7694" authors = ["Carlo Lucibello and contributors"] -version = "0.6.20" +version = "0.6.21-DEV" [deps] ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" @@ -32,6 +32,7 @@ Functors = "0.4.1" GNNGraphs = "1.0" LinearAlgebra = "1" MacroTools = "0.5" +MLDatasets = "eb30cadb-4394-5ae3-aed4-317e484a6458" MLUtils = "0.4" NNlib = "0.9" Random = "1" @@ -54,4 +55,4 @@ Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" cuDNN = "02a925ec-e4fe-4b08-9a7e-0d78e3d38ccd" [targets] -test = ["Test", "Adapt", "DataFrames", "InlineStrings", "SparseArrays", "Graphs", "Zygote", "FiniteDifferences", "ChainRulesTestUtils", "CUDA", "cuDNN"] +test = ["Test", "MLDatasets", "Adapt", "DataFrames", "InlineStrings", "SparseArrays", "Graphs", "Zygote", "FiniteDifferences", "ChainRulesTestUtils", "CUDA", "cuDNN"] diff --git a/docs/src/dev.md b/docs/src/dev.md index 284146c67..98983e44d 100644 --- a/docs/src/dev.md +++ b/docs/src/dev.md @@ -11,6 +11,8 @@ 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. + For generating the documentation locally instead ```