Skip to content

Commit

Permalink
Bump version: 1.5.1 → 1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
meatballs committed Aug 23, 2021
1 parent 4e9145a commit 7fa06ca
Show file tree
Hide file tree
Showing 34 changed files with 34 additions and 34 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 ..session import style_injector as _style_injector
from ._anvil_designer import AutocompleteTemplate

__version__ = "1.5.1"
__version__ = "1.5.2"


_style_injector.inject(
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 @@ -12,7 +12,7 @@
from ..utils._component_helpers import _spacing_property
from ._anvil_designer import ChipTemplate

__version__ = "1.5.1"
__version__ = "1.5.2"

_style_injector.inject(
""".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, _spacing_property
from ._anvil_designer import ChipsInputTemplate

__version__ = "1.5.1"
__version__ = "1.5.2"

_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 @@ -7,7 +7,7 @@
from ..utils import auto_refreshing
from ._anvil_designer import DemoTemplate

__version__ = "1.5.1"
__version__ = "1.5.2"


#### AUTO REFRESING - the item property updates components
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 .. import session
from ._anvil_designer import MessagePillTemplate

__version__ = "1.5.1"
__version__ = "1.5.2"

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 @@ -13,7 +13,7 @@
from ..utils._component_helpers import _add_script, _spacing_property
from ._anvil_designer import MultiSelectDropDownTemplate

__version__ = "1.5.1"
__version__ = "1.5.2"

_add_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__ = "1.5.1"
__version__ = "1.5.2"


class PageBreak(PageBreakTemplate):
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 @@ -10,7 +10,7 @@

from ._anvil_designer import DeterminateTemplate

__version__ = "1.5.1"
__version__ = "1.5.2"

session.style_injector.inject(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 @@ -12,7 +12,7 @@

from ._anvil_designer import IndeterminateTemplate

__version__ = "1.5.1"
__version__ = "1.5.2"

session.style_injector.inject(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__ = "1.5.1"
__version__ = "1.5.2"

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 _add_script, _spacing_property
from ._anvil_designer import QuillTemplate

__version__ = "1.5.1"
__version__ = "1.5.2"

# <!-- Theme included stylesheets -->
_add_script('<link href="//cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">')
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 @@ -14,7 +14,7 @@
from ..utils._component_helpers import _add_script, _get_color, _spacing_property
from ._anvil_designer import SliderTemplate

__version__ = "1.5.1"
__version__ = "1.5.2"


_add_script(
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 @@ -12,7 +12,7 @@
from .. import session
from ..utils._component_helpers import _get_rgb

__version__ = "1.5.1"
__version__ = "1.5.2"

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 @@ -15,7 +15,7 @@
from ..utils._component_helpers import _get_color, _get_rgb, _spacing_property
from ._anvil_designer import TabsTemplate

__version__ = "1.5.1"
__version__ = "1.5.2"

session.style_injector.inject(
"""
Expand Down
2 changes: 1 addition & 1 deletion client_code/augment.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from anvil.js.window import Function as _Function
from anvil.js.window import jQuery as _S

__version__ = "1.5.1"
__version__ = "1.5.2"

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

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__ = "1.5.1"
__version__ = "1.5.2"


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 @@ -6,7 +6,7 @@
# This software is published at https://github.com/anvilistas/anvil-extras
from anvil import Label, Link, get_open_form, set_url_hash

__version__ = "1.5.1"
__version__ = "1.5.2"

# 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/popover.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from anvil.js.window import jQuery as _S
from anvil.js.window import window as _window

__version__ = "1.5.1"
__version__ = "1.5.2"


def 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,6 +5,6 @@
#
# This software is published at https://github.com/anvilistas/anvil-extras

__version__ = "1.5.1"
__version__ = "1.5.2"

from ._routing import *
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__ = "1.5.1"
__version__ = "1.5.2"


class 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 @@ -5,7 +5,7 @@
#
# This software is published at https://github.com/anvilistas/anvil-extras

__version__ = "1.5.1"
__version__ = "1.5.2"

from time import sleep

Expand Down
2 changes: 1 addition & 1 deletion client_code/routing/_routing.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__ = "1.5.1"
__version__ = "1.5.2"


from collections import namedtuple as _namedtuple
Expand Down
2 changes: 1 addition & 1 deletion client_code/routing/_session_expired.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__ = "1.5.1"
__version__ = "1.5.2"


from anvil.js.window import jQuery as _S
Expand Down
2 changes: 1 addition & 1 deletion client_code/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
# This software is published at https://github.com/anvilistas/anvil-extras
from .utils._component_helpers import StyleInjector

__version__ = "1.5.1"
__version__ = "1.5.2"

style_injector = StyleInjector()
2 changes: 1 addition & 1 deletion client_code/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from anvil.js import window as _window

__version__ = "1.5.1"
__version__ = "1.5.2"
__all__ = ["local_storage", "session_storage"]

_prefix = "anvil_storage_"
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 @@ -7,7 +7,7 @@

from functools import cache

__version__ = "1.5.1"
__version__ = "1.5.2"


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 @@ -8,7 +8,7 @@

from functools import cache

__version__ = "1.5.1"
__version__ = "1.5.2"

_dict_setitem = dict.__setitem__

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 @@ -11,7 +11,7 @@
from anvil.js.window import document as _document
from anvil.js.window import jQuery as _S

__version__ = "1.5.1"
__version__ = "1.5.2"

_loaded = False
_characters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
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 @@ -9,7 +9,7 @@
from functools import wraps
from time import gmtime, strftime, time

__version__ = "1.5.1"
__version__ = "1.5.2"


def _signature(func, args, kwargs):
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 @@ -9,7 +9,7 @@

from anvil.js.window import Function, anvilFormTemplates

__version__ = "1.5.1"
__version__ = "1.5.2"

_store_writebacks = Function(
"form",
Expand Down
2 changes: 1 addition & 1 deletion client_code/uuid.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from anvil.js.window import eval as _eval

__version__ = "1.5.1"
__version__ = "1.5.2"

_js_uuid = _eval("import('https://jspm.dev/[email protected]');")
_v4, _parse, _validate = _js_uuid.v4, _js_uuid.parse, _js_uuid.validate
Expand Down
2 changes: 1 addition & 1 deletion server_code/authorisation.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import anvil.users

__version__ = "1.5.1"
__version__ = "1.5.2"


def authentication_required(func):
Expand Down
2 changes: 1 addition & 1 deletion server_code/server_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from functools import wraps
from time import time

__version__ = "1.5.1"
__version__ = "1.5.2"


def get_logger():
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.5.1
current_version = 1.5.2
commit = True
tag = True

Expand Down

0 comments on commit 7fa06ca

Please sign in to comment.