diff --git a/docs/conf.py b/docs/conf.py index 22f20282c8fa..c01b1a8c9e34 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -145,7 +145,7 @@ def documenter(app, obj, parent): autosummary_generate = True # versioning config -smv_tag_whitelist = r'^(v3.5.0)$' +smv_tag_whitelist = r'^(v3.6.0)$' smv_branch_whitelist = r'^main$' smv_remote_whitelist = None smv_released_pattern = r'^tags/.*$' diff --git a/python/triton/__init__.py b/python/triton/__init__.py index 573f2e2c051c..3d637cf0b25c 100644 --- a/python/triton/__init__.py +++ b/python/triton/__init__.py @@ -1,5 +1,5 @@ """isort:skip_file""" -__version__ = '3.5.0' +__version__ = '3.6.0' # --------------------------------------- # Note: import order is significant here. diff --git a/setup.py b/setup.py index 017f1112f850..fccb4ef17e2e 100644 --- a/setup.py +++ b/setup.py @@ -808,7 +808,7 @@ def get_triton_version_suffix(): # keep it separate for easy substitution -TRITON_VERSION = "3.5.0" + get_triton_version_suffix() +TRITON_VERSION = "3.6.0" + get_triton_version_suffix() # Dynamically define supported Python versions and classifiers MIN_PYTHON = (3, 10)