Skip to content

Commit

Permalink
Bump version: 2.6.0 → 2.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
s-cork committed Mar 27, 2024
1 parent b3a552f commit a72b9b3
Show file tree
Hide file tree
Showing 59 changed files with 59 additions and 59 deletions.
2 changes: 1 addition & 1 deletion client_code/Autocomplete/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from ..utils._component_helpers import _html_injector
from ._anvil_designer import AutocompleteTemplate

__version__ = "2.6.0"
__version__ = "2.6.1"


_html_injector.css(
Expand Down
2 changes: 1 addition & 1 deletion client_code/Chip/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from ..utils._component_helpers import _html_injector, _spacing_property
from ._anvil_designer import ChipTemplate

__version__ = "2.6.0"
__version__ = "2.6.1"

_html_injector.css(
""".anvil-extras-chip{
Expand Down
2 changes: 1 addition & 1 deletion client_code/ChipsInput/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from ..utils._component_helpers import _get_color, _html_injector, _spacing_property
from ._anvil_designer import ChipsInputTemplate

__version__ = "2.6.0"
__version__ = "2.6.1"

_primary = _get_color(None)

Expand Down
2 changes: 1 addition & 1 deletion client_code/Demo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from ..utils import auto_refreshing
from ._anvil_designer import DemoTemplate

__version__ = "2.6.0"
__version__ = "2.6.1"
dataset_url = "https://pivottable.js.org/examples/mps.json"


Expand Down
2 changes: 1 addition & 1 deletion client_code/MessagePill/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from ..utils._component_helpers import _html_injector
from ._anvil_designer import MessagePillTemplate

__version__ = "2.6.0"
__version__ = "2.6.1"

css = """
.anvil-role-message-pill {
Expand Down
2 changes: 1 addition & 1 deletion client_code/MultiSelectDropDown/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from ..utils._component_helpers import _css_length, _html_injector, _spacing_property
from ._anvil_designer import MultiSelectDropDownTemplate

__version__ = "2.6.0"
__version__ = "2.6.1"

_html_injector.script(
"""
Expand Down
2 changes: 1 addition & 1 deletion client_code/PageBreak/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from ._anvil_designer import PageBreakTemplate

__version__ = "2.6.0"
__version__ = "2.6.1"


class PageBreak(PageBreakTemplate):
Expand Down
2 changes: 1 addition & 1 deletion client_code/Pivot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ..utils import _component_helpers as helpers
from ._anvil_designer import PivotTemplate

__version__ = "2.6.0"
__version__ = "2.6.1"

pivottable_version = "2.23.0"
jqueryui_version = "1.11.4"
Expand Down
2 changes: 1 addition & 1 deletion client_code/ProgressBar/Determinate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from ._anvil_designer import DeterminateTemplate

__version__ = "2.6.0"
__version__ = "2.6.1"

_html_injector.css(ProgressBar.css)

Expand Down
2 changes: 1 addition & 1 deletion client_code/ProgressBar/Indeterminate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from ._anvil_designer import IndeterminateTemplate

__version__ = "2.6.0"
__version__ = "2.6.1"

_html_injector.css(ProgressBar.css)

Expand Down
2 changes: 1 addition & 1 deletion client_code/ProgressBar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# https://github.com/anvilistas/anvil-extras/graphs/contributors
#
# This software is published at https://github.com/anvilistas/anvil-extras
__version__ = "2.6.0"
__version__ = "2.6.1"

css = """ .anvil-role-progress-track, .anvil-role-progress-indicator {
display: block;
Expand Down
2 changes: 1 addition & 1 deletion client_code/Quill/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from ..utils._component_helpers import _html_injector, _spacing_property
from ._anvil_designer import QuillTemplate

__version__ = "2.6.0"
__version__ = "2.6.1"

# <!-- Theme included stylesheets -->
prefix = "//cdn.quilljs.com/"
Expand Down
2 changes: 1 addition & 1 deletion client_code/Slider/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
except ImportError:
in_designer = False

__version__ = "2.6.0"
__version__ = "2.6.1"

noui_version = "15.4.0"

Expand Down
2 changes: 1 addition & 1 deletion client_code/Switch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from ..utils._component_helpers import _get_rgb, _html_injector

__version__ = "2.6.0"
__version__ = "2.6.1"

primary = app.theme_colors.get("Primary 500", "#2196F3")

Expand Down
2 changes: 1 addition & 1 deletion client_code/Tabs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
)
from ._anvil_designer import TabsTemplate

__version__ = "2.6.0"
__version__ = "2.6.1"

_html_injector.css(
"""
Expand Down
2 changes: 1 addition & 1 deletion client_code/animation.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from anvil.js import get_dom_node as _dom_node
from anvil.js import window as _window

__version__ = "2.6.0"
__version__ = "2.6.1"


class _Easing:
Expand Down
2 changes: 1 addition & 1 deletion client_code/augment.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

from .utils._deprecated import deprecated

__version__ = "2.6.0"
__version__ = "2.6.1"

__all__ = ["add_event", "add_event_handler", "set_event_handler", "trigger"]

Expand Down
2 changes: 1 addition & 1 deletion client_code/hashlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from anvil.js import window

__version__ = "2.6.0"
__version__ = "2.6.1"


def digest(algorithm, data):
Expand Down
2 changes: 1 addition & 1 deletion client_code/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from functools import wraps
from time import time as _time

__version__ = "2.6.0"
__version__ = "2.6.1"

NOTSET = 0
DEBUG = 1
Expand Down
2 changes: 1 addition & 1 deletion client_code/messaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# https://github.com/anvilistas/anvil-extras/graphs/contributors
#
# This software is published at https://github.com/anvilistas/anvil-extras
__version__ = "2.6.0"
__version__ = "2.6.1"


class Message:
Expand Down
2 changes: 1 addition & 1 deletion client_code/navigation.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from .utils._view_transition import ViewTransition, use_transitions

__version__ = "2.6.0"
__version__ = "2.6.1"

# A dict mapping a form's name to a further dict with the form's class and title
_forms = {}
Expand Down
2 changes: 1 addition & 1 deletion client_code/non_blocking.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from anvil.js import window as _W
from anvil.server import call_s as _call_s

__version__ = "2.6.0"
__version__ = "2.6.1"

try:
# just for a nice repr by default
Expand Down
2 changes: 1 addition & 1 deletion client_code/persistence.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# This software is published at https://github.com/anvilistas/anvil-extras
import anvil.server

__version__ = "2.6.0"
__version__ = "2.6.1"


def _snakify(text):
Expand Down
2 changes: 1 addition & 1 deletion client_code/popover.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

from .utils._component_helpers import walk as _walk

__version__ = "2.6.0"
__version__ = "2.6.1"

__all__ = [
"popover",
Expand Down
2 changes: 1 addition & 1 deletion client_code/routing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# This software is published at https://github.com/anvilistas/anvil-extras

__version__ = "2.6.0"
__version__ = "2.6.1"

from anvil.js import window as _w

Expand Down
2 changes: 1 addition & 1 deletion client_code/routing/_alert.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# This software is published at https://github.com/anvilistas/anvil-extras

__version__ = "2.6.0"
__version__ = "2.6.1"

import anvil
from anvil import alert as anvil_alert
Expand Down
2 changes: 1 addition & 1 deletion client_code/routing/_decorators.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from . import _router
from ._utils import RedirectInfo, RouteInfo, TemplateInfo, _as_frozen_str_iterable

__version__ = "2.6.0"
__version__ = "2.6.1"


def _check_types_common(path, priority, condition):
Expand Down
2 changes: 1 addition & 1 deletion client_code/routing/_logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# This software is published at https://github.com/anvilistas/anvil-extras

__version__ = "2.6.0"
__version__ = "2.6.1"

from ..logging import DEBUG, INFO
from ..logging import Logger as _Logger
Expand Down
2 changes: 1 addition & 1 deletion client_code/routing/_navigation.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from . import _router

__version__ = "2.6.0"
__version__ = "2.6.1"

# re-initialise the state object which was overridden on load or this is a new session
state = history.state or {"url": location.hash, "pos": 0}
Expand Down
2 changes: 1 addition & 1 deletion client_code/routing/_router.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from ._logging import logger
from ._utils import ANY, TemplateInfo, get_url_components

__version__ = "2.6.0"
__version__ = "2.6.1"


class NavigationExit(Exception):
Expand Down
2 changes: 1 addition & 1 deletion client_code/routing/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

from ._logging import logger

__version__ = "2.6.0"
__version__ = "2.6.1"


ANY = object()
Expand Down
2 changes: 1 addition & 1 deletion client_code/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from anvil.js import ExternalError
from anvil.js import window as _window

__version__ = "2.6.0"
__version__ = "2.6.1"
__all__ = ["local_storage", "indexed_db"]

try:
Expand Down
2 changes: 1 addition & 1 deletion client_code/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import sys
from functools import lru_cache

__version__ = "2.6.0"
__version__ = "2.6.1"


def __dir__():
Expand Down
2 changes: 1 addition & 1 deletion client_code/utils/_auto_refreshing.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from anvil.server import portable_class

__version__ = "2.6.0"
__version__ = "2.6.1"


def wrap_method(meth_name, refresh=False):
Expand Down
2 changes: 1 addition & 1 deletion client_code/utils/_canvas_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from anvil.js import get_dom_node as _dom_node
from anvil.js import window as _window

__version__ = "2.6.0"
__version__ = "2.6.1"


def correct_canvas_resolution(canvas):
Expand Down
2 changes: 1 addition & 1 deletion client_code/utils/_component_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from anvil.js.window import Promise as _Promise
from anvil.js.window import document as _document

__version__ = "2.6.0"
__version__ = "2.6.1"

_characters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
window.anvilExtras = window.get("anvilExtras", {})
Expand Down
2 changes: 1 addition & 1 deletion client_code/utils/_deferred.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from anvil.js import window as _window

__version__ = "2.6.0"
__version__ = "2.6.1"


class Deferred:
Expand Down
2 changes: 1 addition & 1 deletion client_code/utils/_deprecated.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from functools import wraps

__version__ = "2.6.0"
__version__ = "2.6.1"


def deprecated(msg=""):
Expand Down
2 changes: 1 addition & 1 deletion client_code/utils/_timed.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

from .. import logging as logging

__version__ = "2.6.0"
__version__ = "2.6.1"

LOGGER = logging.Logger(name="timing", format="{datetime:%Y-%m-%d %H:%M:%S}: {msg}")

Expand Down
2 changes: 1 addition & 1 deletion client_code/utils/_view_transition.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from ._deferred import Deferred

__version__ = "2.6.0"
__version__ = "2.6.1"

_transition = None
_can_transition = hasattr(document, "startViewTransition")
Expand Down
2 changes: 1 addition & 1 deletion client_code/utils/_writeback_waiter.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

from ._deferred import Deferred as _Deferred

__version__ = "2.6.0"
__version__ = "2.6.1"

_active_writebacks = []

Expand Down
2 changes: 1 addition & 1 deletion client_code/uuid.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from .utils._deprecated import deprecated

__version__ = "2.6.0"
__version__ = "2.6.1"

try:
_js_uuid = _W.uuid
Expand Down
2 changes: 1 addition & 1 deletion client_code/zod/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@
ParseError = ZodError
IssueCode = ZodIssueCode

__version__ = "2.6.0"
__version__ = "2.6.1"

__all__ = [] # it would be dangerous to do import *
2 changes: 1 addition & 1 deletion client_code/zod/_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
is_valid,
)

__version__ = "2.6.0"
__version__ = "2.6.1"

any_ = any
isinstance_ = isinstance
Expand Down
Loading

0 comments on commit a72b9b3

Please sign in to comment.