Skip to content

Commit 6edb7fa

Browse files
authored
Merge pull request #15 from serverscom/bump_to_2.16
Bump to 2.16
2 parents d3e531a + b724e5d commit 6edb7fa

File tree

5 files changed

+450
-620
lines changed

5 files changed

+450
-620
lines changed

galaxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
namespace: serverscom
33
name: mitogen
4-
version: 1.3.4
4+
version: 1.3.5
55
readme: README.md
66
authors:
77
- Sergey Putko <[email protected]>

molecule/default/molecule.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
dependency:
33
name: galaxy
44
driver:
5-
name: delegated
5+
name: default
66
platforms:
77
- name: instance
88
provisioner:

plugins/strategy/patching.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def loaders_path():
2828

2929
class patch_version(ContextDecorator):
3030
ORIG_LINE = "ANSIBLE_VERSION_MAX = (2, 13)\n"
31-
PATCH_LINE = "ANSIBLE_VERSION_MAX = (2, 15)\n"
31+
PATCH_LINE = "ANSIBLE_VERSION_MAX = (2, 16)\n"
3232

3333
def __enter__(self):
3434
self.patched = False
@@ -47,8 +47,8 @@ def __enter__(self):
4747
with open(self.lp_orig) as source:
4848
with open(self.lp, "w") as dest:
4949
for line in source.readlines():
50-
if line == "ANSIBLE_VERSION_MAX = (2, 13)\n":
51-
line = "ANSIBLE_VERSION_MAX = (2, 15)\n"
50+
if line == self.ORIG_LINE:
51+
line = self.PATCH_LINE
5252
dest.write(line)
5353
return self
5454

0 commit comments

Comments
 (0)