Skip to content

Commit

Permalink
(chore) bump version to v1.8.4 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
epwalsh committed Oct 6, 2024
1 parent 2cad939 commit aad0e2a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [v1.8.4](https://github.com/allenai/beaker-gantry/releases/tag/v1.8.4) - 2024-10-06

### Fixed

- Exclude saturn and neptune clusters from auto NFS

## [v1.8.3](https://github.com/allenai/beaker-gantry/releases/tag/v1.8.3) - 2024-08-02

### Fixed
Expand Down
7 changes: 6 additions & 1 deletion gantry/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,9 @@

NFS_MOUNT = "/net/nfs.cirrascale"

CLUSTERS_WITHOUT_NFS = {"ai2/jupiter-cirrascale", "ai2/jupiter-cirrascale-2", "ai2/saturn-cirrascale"}
CLUSTERS_WITHOUT_NFS = {
"ai2/jupiter-cirrascale",
"ai2/jupiter-cirrascale-2",
"ai2/saturn-cirrascale",
"ai2/neptune-cirrascale",
}
2 changes: 1 addition & 1 deletion gantry/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
_MAJOR = "1"
_MINOR = "8"
_PATCH = "3"
_PATCH = "4"
_SUFFIX = ""

VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR)
Expand Down

0 comments on commit aad0e2a

Please sign in to comment.