Skip to content

Commit

Permalink
Bump version: 1.3.0 → 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
meatballs committed May 31, 2021
1 parent 4188d3f commit 431e6c7
Show file tree
Hide file tree
Showing 29 changed files with 29 additions and 29 deletions.
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.3.0"
__version__ = "1.3.1"


#### 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.3.0"
__version__ = "1.3.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 @@ -13,7 +13,7 @@
from ..utils._component_helpers import _add_script, _spacing_property
from ._anvil_designer import MultiSelectDropDownTemplate

__version__ = "1.3.0"
__version__ = "1.3.1"

_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.3.0"
__version__ = "1.3.1"


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.3.0"
__version__ = "1.3.1"

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

from ._anvil_designer import IndeterminateTemplate

__version__ = "1.3.0"
__version__ = "1.3.1"

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.3.0"
__version__ = "1.3.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 _add_script, _spacing_property
from ._anvil_designer import QuillTemplate

__version__ = "1.3.0"
__version__ = "1.3.1"

# <!-- 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.3.0"
__version__ = "1.3.1"


_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_color

__version__ = "1.3.0"
__version__ = "1.3.1"

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

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

__version__ = "1.3.0"
__version__ = "1.3.1"

__all__ = ["add_event", "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.3.0"
__version__ = "1.3.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 @@ -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.3.0"
__version__ = "1.3.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/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.3.0"
__version__ = "1.3.1"


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.3.0"
__version__ = "1.3.1"

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.3.0"
__version__ = "1.3.1"


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.3.0"
__version__ = "1.3.1"

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.3.0"
__version__ = "1.3.1"


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.3.0"
__version__ = "1.3.1"


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

from . import style

__version__ = "1.3.0"
__version__ = "1.3.1"
characters = "abcdefghijklmnopqrstuvwxyz0123456789"

style_injector = style.Injector()
Expand Down
2 changes: 1 addition & 1 deletion client_code/style.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.js.window import document

__version__ = "1.3.0"
__version__ = "1.3.1"


class Injector:
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.3.0"
__version__ = "1.3.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 @@ -8,7 +8,7 @@

from functools import cache

__version__ = "1.3.0"
__version__ = "1.3.1"

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

__version__ = "1.3.0"
__version__ = "1.3.1"

_loaded = False

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.3.0"
__version__ = "1.3.1"


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.3.0"
__version__ = "1.3.1"

_store_writebacks = Function(
"form",
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.3.0"
__version__ = "1.3.1"


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.3.0"
__version__ = "1.3.1"


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.3.0
current_version = 1.3.1
commit = True
tag = True

Expand Down

0 comments on commit 431e6c7

Please sign in to comment.