Skip to content

Commit 3c94d4c

Browse files
authored
0.3.7 release (#106)
1 parent 0d09e84 commit 3c94d4c

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

docs/src/changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@
1212

1313
### Security
1414

15+
## [`v0.3.7` (2023-02-14)](https://github.com/anupli/running-ng/releases/tag/v0.3.7)
16+
### Fixed
17+
#### Commands
18+
- `runbms`: better heuristics to detect whether a host is in the moma subnet.
19+
1520
## [`v0.3.6` (2023-01-16)](https://github.com/anupli/running-ng/releases/tag/v0.3.6)
1621
### Added
1722
#### Base Configurations

src/running/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
VERSION = (0, 3, 6)
1+
VERSION = (0, 3, 7)
22
__VERSION__ = '.'.join(map(str, VERSION))

src/running/plugin/runbms/__init__.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ def end_config(self, _hfac: Optional[float], _size: Optional[int], _bm: "Benchma
7272
class Zulip(RunbmsPlugin):
7373
def __init__(self, **kwargs):
7474
raise RuntimeError("Trying to create an instance of the Zulip "
75-
"plugin for runbms, but the import failed. This is most likely due "
76-
"to the required dependencies not being installed. Try pip install "
77-
"running-ng[zulip] to install the extra dependencies.")
75+
"plugin for runbms, but the import failed. "
76+
"This is most likely due to the required "
77+
"dependencies not being installed. Try pip "
78+
"install running-ng[zulip] to install the extra dependencies.")

0 commit comments

Comments
 (0)