diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2021-02-22 17:40:47 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2021-02-22 17:41:46 -0800 |
commit | 56e57769bde417366a8aa2273e158a6841d9d9e5 (patch) | |
tree | 27209bcda038da5b12320afc60be8e24668bed40 /lib | |
parent | c9246af112470cd83369158d883fcbf6b52b42ee (diff) | |
parent | 8dd2d740b1fbd4335209240fcc42826d0a143f57 (diff) | |
download | spack-56e57769bde417366a8aa2273e158a6841d9d9e5.tar.gz spack-56e57769bde417366a8aa2273e158a6841d9d9e5.tar.bz2 spack-56e57769bde417366a8aa2273e158a6841d9d9e5.tar.xz spack-56e57769bde417366a8aa2273e158a6841d9d9e5.zip |
Merge tag 'v0.16.1' into develop
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/spack/__init__.py b/lib/spack/spack/__init__.py index e37d40e029..21e0d3f863 100644 --- a/lib/spack/spack/__init__.py +++ b/lib/spack/spack/__init__.py @@ -1,11 +1,11 @@ -# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other +# Copyright 2013-2020 Lawrence Livermore National Security, LLC and other # Spack Project Developers. See the top-level COPYRIGHT file for details. # # SPDX-License-Identifier: (Apache-2.0 OR MIT) #: major, minor, patch version for Spack, in a tuple -spack_version_info = (0, 16, 0) +spack_version_info = (0, 16, 1) #: String containing Spack version joined with .'s spack_version = '.'.join(str(v) for v in spack_version_info) |