Skip to content

Commit 2449f60

Browse files
author
Calvin Wang
committed
V bump
1 parent 91e693d commit 2449f60

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pydeequ/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# ANY KIND, either express or implied. See the License for the specific
1313
# language governing permissions and limitations under the License.
1414
"""Placeholder docstrings"""
15-
__version__ = "1.0.0"
15+
__version__ = "1.0.1"
1616

1717
from pyspark.sql import SparkSession
1818

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pydeequ"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
description = "PyDeequ - Unit Tests for Data"
55
authors = ["Calvin Wang <[email protected]>"]
66
maintainers = ["Calvin Wang <[email protected]>"]

tests/test_pydeequ.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33

44

55
def test_version():
6-
if __version__ != "1.0.0":
6+
if __version__ != "1.0.1":
77
raise AssertionError

0 commit comments

Comments
 (0)