Skip to content

Commit

Permalink
Merge pull request #21 from anvilistas/master
Browse files Browse the repository at this point in the history
Master
  • Loading branch information
meatballs authored Mar 11, 2021
2 parents c9ee2ab + d211c22 commit 2fff6f1
Show file tree
Hide file tree
Showing 17 changed files with 19 additions and 15 deletions.
2 changes: 1 addition & 1 deletion client_code/Demo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# This software is published at https://github.com/anvilistas/anvil-extras
from ._anvil_designer import DemoTemplate

__version__ = "0.1.9"
__version__ = "1.0.0"


class Demo(DemoTemplate):
Expand Down
2 changes: 1 addition & 1 deletion client_code/EditableCard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

from ._anvil_designer import EditableCardTemplate

__version__ = "0.1.9"
__version__ = "1.0.0"

day_format = "%d/%m/%Y"
time_format = "%I.%M %p"
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 @@ -25,7 +25,7 @@
from .. import session
from ._anvil_designer import MessagePillTemplate

__version__ = "0.1.9"
__version__ = "1.0.0"

css = """
.anvil-role-message-pill {
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 @@ -26,7 +26,7 @@

from ._anvil_designer import PageBreakTemplate

__version__ = "0.1.9"
__version__ = "1.0.0"


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

from ._anvil_designer import DeterminateTemplate

__version__ = "0.1.9"
__version__ = "1.0.0"

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

from ._anvil_designer import IndeterminateTemplate

__version__ = "0.1.9"
__version__ = "1.0.0"

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 @@ -22,7 +22,7 @@
# SOFTWARE.
#
# This software is published at https://github.com/anvilistas/anvil-extras
__version__ = "0.1.9"
__version__ = "1.0.0"

css = """ .anvil-role-progress-track, .anvil-role-progress-indicator {
display: block;
Expand Down
2 changes: 2 additions & 0 deletions client_code/augment.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
from anvil import js as _js
from anvil.js.window import jQuery as _S

__version__ = "1.0.0"


def add_event(component, event):
"""component: (instantiated) anvil component
Expand Down
2 changes: 1 addition & 1 deletion client_code/messaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# SOFTWARE.
#
# This software is published at https://github.com/anvilistas/anvil-extras
__version__ = "0.1.9"
__version__ = "1.0.0"


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

__version__ = "0.1.9"
__version__ = "1.0.0"

# A dict mapping a form's name to a further dict with the form's class and title
_forms = {}
Expand Down
2 changes: 2 additions & 0 deletions client_code/popover.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
from anvil.js.window import jQuery as _S
from anvil.js.window import window as _window

__version__ = "1.0.0"


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

from . import style

__version__ = "0.1.9"
__version__ = "1.0.0"

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 @@ -24,7 +24,7 @@
# This software is published at https://github.com/anvilistas/anvil-extras
from anvil.js.window import document

__version__ = "0.1.9"
__version__ = "1.0.0"


class Injector:
Expand Down
2 changes: 1 addition & 1 deletion client_code/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# This software is published at https://github.com/anvilistas/anvil-extras
from time import gmtime, strftime, time

__version__ = "0.1.9"
__version__ = "1.0.0"


def _signature(func, args, kwargs):
Expand Down
2 changes: 1 addition & 1 deletion server_code/authorisation.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

import anvil.users

__version__ = "0.1.9"
__version__ = "1.0.0"


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 @@ -27,7 +27,7 @@
from functools import wraps
from time import time

__version__ = "0.1.9"
__version__ = "1.0.0"


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 = 0.1.9
current_version = 1.0.0
commit = True
tag = True

Expand Down

0 comments on commit 2fff6f1

Please sign in to comment.