From c31c3ef234c6f01e808762222f8bc222ac2c8941 Mon Sep 17 00:00:00 2001 From: treydock Date: Fri, 3 Jun 2022 16:18:23 -0400 Subject: [PATCH] Release v0.20.0 (#760) * Release v0.20.0 * Update CHANGELOG.md Co-authored-by: Jeff Ohrstrom Co-authored-by: Jeff Ohrstrom --- CHANGELOG.md | 4 +++- lib/ood_core/version.rb | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a9abca7f..81fa48f36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,8 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -## [0.19.1] - 06-03-2022 +## [0.20.0] - 06-03-2022 +- Adapters can now respond to `cluster_info` in [752](https://github.com/OSC/ood_core/pull/752). This returns information about the cluster like how many nodes are available and so on. Only Slurm support in this release. +- `OodCore::Job::Info` now has a `gpus` attribute in [753](https://github.com/OSC/ood_core/pull/753). Only Slurm support in this release. - Support Ruby 3 in [759](https://github.com/OSC/ood_core/pull/759) ## [0.19.0] - 02-03-2022 diff --git a/lib/ood_core/version.rb b/lib/ood_core/version.rb index 6b32ceb89..afef831f6 100644 --- a/lib/ood_core/version.rb +++ b/lib/ood_core/version.rb @@ -1,4 +1,4 @@ module OodCore # The current version of {OodCore} - VERSION = "0.19.1" + VERSION = "0.20.0" end