diff options
author | Heiko Bauke <heiko.bauke@mail.de> | 2023-03-12 08:33:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-12 08:33:27 +0100 |
commit | 29d989a048a1bb670542e2bce694df931043dcea (patch) | |
tree | 3571538414b67d6552f83d3688e892f28eee9ed3 | |
parent | 79bba432df53f0ee1e597792b71e4beded6e7ed9 (diff) | |
download | spack-29d989a048a1bb670542e2bce694df931043dcea.tar.gz spack-29d989a048a1bb670542e2bce694df931043dcea.tar.bz2 spack-29d989a048a1bb670542e2bce694df931043dcea.tar.xz spack-29d989a048a1bb670542e2bce694df931043dcea.zip |
mpl: add v0.3.0 (#36015)
-rw-r--r-- | var/spack/repos/builtin/packages/mpl/package.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/mpl/package.py b/var/spack/repos/builtin/packages/mpl/package.py index 260ea41d0c..612049bad2 100644 --- a/var/spack/repos/builtin/packages/mpl/package.py +++ b/var/spack/repos/builtin/packages/mpl/package.py @@ -11,10 +11,11 @@ class Mpl(CMakePackage): homepage = "https://rabauke.github.io/mpl/html/" git = "https://github.com/rabauke/mpl.git" - url = "https://github.com/rabauke/mpl/archive/refs/tags/v0.2.1.tar.gz" + url = "https://github.com/rabauke/mpl/archive/refs/tags/v0.3.0.tar.gz" maintainers("rabauke") version("develop", branch="master") + version("0.3.0", tag="v0.3.0") version("0.2.1", tag="v0.2.1") version("0.2.0", tag="v0.2.0") version("0.1", tag="v0.1") |