Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

[Backport 2.0] Bumping version to 2.0.1 #56

Merged
merged 1 commit into from
Jun 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion opensearch_dsl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
from .utils import AttrDict, AttrList, DslBase
from .wrappers import Range

VERSION = (2, 0, 0)
VERSION = (2, 0, 1)
__version__ = VERSION
__versionstr__ = ".".join(map(str, VERSION))
__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

from setuptools import find_packages, setup

VERSION = (2, 0, 0)
VERSION = (2, 0, 1)
__version__ = VERSION
__versionstr__ = ".".join(map(str, VERSION))

Expand Down