ood_core 0.11.1 → 0.11.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -3
- data/lib/ood_core/job/adapters/linux_host.rb +1 -1
- data/lib/ood_core/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ee8aed504e3bdb8ef0e768a82cae8632a683d16764248a16c6061350a88f9f86
|
|
4
|
+
data.tar.gz: 92c4f97a2f6f10e22085be6406ff5d3f9eebd1e0656a15f7b835f4fe4421d90a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5b0f8422158f377f56a202a788a703ceb628dcfffc1e13a78c193ffa4e0f538108280a3c45af2dd404dd933142c1e78858cb7e8c2ffbdcd51e243d8d23afb6ca
|
|
7
|
+
data.tar.gz: 7599e841e9c9e56b1c3308e5baa8b58db919707d940947dfee8cc93fdf98e5262b4674aec551ad084428c0312e4725408cb13d589ea9c119b71d3eb66f94c2de
|
data/CHANGELOG.md
CHANGED
|
@@ -6,12 +6,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
|
+
## [0.11.2] - 2020-04-23
|
|
10
|
+
### Fixed
|
|
11
|
+
- fix signature of `LinuxHost#info_where_owner`
|
|
9
12
|
|
|
10
|
-
## [0.11.1] -
|
|
13
|
+
## [0.11.1] - 2020-03-18
|
|
11
14
|
### Changed
|
|
12
15
|
- Only the version changed. Had to republish to rubygems.org
|
|
13
16
|
|
|
14
|
-
## [0.11.0] -
|
|
17
|
+
## [0.11.0] - 2020-03-18
|
|
15
18
|
### Added
|
|
16
19
|
- Added directive prefixes to each adapter (e.g. `#QSUB`) ([#161](https://github.com/OSC/ood_core/issues/161))
|
|
17
20
|
- LHA supports `submit_host` field in native ([#164](https://github.com/OSC/ood_core/issues/164))
|
|
@@ -219,7 +222,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
219
222
|
### Added
|
|
220
223
|
- Initial release!
|
|
221
224
|
|
|
222
|
-
[Unreleased]: https://github.com/OSC/ood_core/compare/v0.11.
|
|
225
|
+
[Unreleased]: https://github.com/OSC/ood_core/compare/v0.11.2...HEAD
|
|
226
|
+
[0.11.2]: https://github.com/OSC/ood_core/compare/v0.11.1...v0.11.2
|
|
223
227
|
[0.11.1]: https://github.com/OSC/ood_core/compare/v0.11.0...v0.11.1
|
|
224
228
|
[0.11.0]: https://github.com/OSC/ood_core/compare/v0.10.0...v0.11.0
|
|
225
229
|
[0.10.0]: https://github.com/OSC/ood_core/compare/v0.9.3...v0.10.0
|
|
@@ -106,7 +106,7 @@ module OodCore
|
|
|
106
106
|
# @param owner [#to_s, Array<#to_s>] the owner(s) of the jobs
|
|
107
107
|
# @raise [JobAdapterError] if something goes wrong getting job info
|
|
108
108
|
# @return [Array<Info>] information describing submitted jobs
|
|
109
|
-
def info_where_owner(
|
|
109
|
+
def info_where_owner(_, attrs: nil)
|
|
110
110
|
info_all
|
|
111
111
|
end
|
|
112
112
|
|
data/lib/ood_core/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ood_core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.11.
|
|
4
|
+
version: 0.11.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eric Franz
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: exe
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2020-
|
|
13
|
+
date: 2020-04-24 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: ood_support
|
|
@@ -215,8 +215,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
215
215
|
- !ruby/object:Gem::Version
|
|
216
216
|
version: '0'
|
|
217
217
|
requirements: []
|
|
218
|
-
|
|
219
|
-
rubygems_version: 2.7.6.2
|
|
218
|
+
rubygems_version: 3.0.3
|
|
220
219
|
signing_key:
|
|
221
220
|
specification_version: 4
|
|
222
221
|
summary: Open OnDemand core library
|