Skip to content

Commit 058b907

Browse files
committed
reverted version bump
1 parent 124efe6 commit 058b907

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[bumpversion]
2-
current_version = 1.0.1
2+
current_version = 1.0.0
33
commit = True
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
66
serialize =
77
{major}.{minor}.{patch}-{release}{build}
88
{major}.{minor}.{patch}
9-
message = [skip actions] Bump version: {current_version} → {new_version}
9+
# message = [skip actions] Bump version: {current_version} → {new_version}
1010

1111
[bumpversion:part:release]
1212
optional_value = prod

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@ def read_requirements(thelibFolder, filename):
6161
test_suite="tests",
6262
tests_require=test_requirements,
6363
url="https://github.com/manujosephv/pytorch_tabular",
64-
version="1.0.1",
64+
version="1.0.0",
6565
zip_safe=False,
6666
)

src/pytorch_tabular/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = """Manu Joseph"""
44
__email__ = "manujosephv@gmail.com"
5-
__version__ = "1.0.1"
5+
__version__ = "1.0.0"
66

77
from . import models, ssl_models
88
from .categorical_encoders import CategoricalEmbeddingTransformer

0 commit comments

Comments
 (0)