Skip to content

Commit 6174962

Browse files
hallvictoriaVictoria Hall
and
Victoria Hall
authored
build: update extension version (#57)
* Update __init__.py * testing fix --------- Co-authored-by: Victoria Hall <[email protected]>
1 parent df56cdf commit 6174962

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Diff for: azurefunctions-extensions-base/azurefunctions/extensions/base/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@
3939
"RequestSynchronizer",
4040
]
4141

42-
__version__ = "1.0.0b1"
42+
__version__ = "1.0.0b2"

Diff for: azurefunctions-extensions-base/tests/test_utils.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def __init__(self, bindings: utils.Binding):
1919

2020

2121
class MockInitParams(utils.Binding):
22-
def __init__(self, name, direction, data_type, type, init_params):
22+
def __init__(self, name, direction, data_type, type, init_params, path=None):
2323
self.type = "blob"
2424
self.name = name
2525
self._direction = direction
@@ -30,6 +30,7 @@ def __init__(self, name, direction, data_type, type, init_params):
3030
"type": self.type,
3131
}
3232
self.init_params = init_params
33+
self.path = path
3334

3435

3536
class TestUtils(unittest.TestCase):

0 commit comments

Comments
 (0)