Skip to content

Commit c954873

Browse files
committed
Moved version to 1.0.1
1 parent 05c1b9d commit c954873

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.spack/package.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ class FerryCli(PythonPackage):
3939
maintainers = ["ltrestka", "shreyb", "cathulhu"]
4040

4141
version("latest", branch="master")
42-
version("1.0.0", tag="1.0.0", preferred=True)
42+
version("1.0.0", tag="1.0.0")
43+
version("1.0.1", tag="1.0.1", preferred=True)
4344

4445
depends_on("python@3.6.8:", type=("run"))
4546

@@ -83,4 +84,4 @@ def setup_environment(self, spack_env, run_env):
8384

8485
def url_for_version(self, version):
8586
url = "https://github.com/fermitools/Ferry-CLI/archive/refs/tags/{0}.tar.gz"
86-
return url.format(version)
87+
return url.format(version)

ferry_cli/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
__swagger_file_title__ = "Ferry API"
1414
__summary__ = "A command line interface for making ferry api calls. Can be used to automate repetitive tasks, incorporate usage safeguards for users or groups, or create scripts for common sequences. ."
1515
__uri__ = "https://github.com/fermitools/Ferry-CLI"
16-
__version__ = "1.0.0"
16+
__version__ = "1.0.1"
1717
__email__ = "ltrestka@fnal.gov, sbhat@fnal.gov, brynmool@fnal.gov"
1818
__author__ = "Fermi National Accelerator Laboratory"
1919
__copyright__ = f"2024 {__author__}"

0 commit comments

Comments
 (0)