Skip to content

Commit 0da70c9

Browse files
committed
Update version
1 parent adebefb commit 0da70c9

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Much of the functionality of this package has been ported over from [tivars_lib_
2727

2828
## Installation
2929

30-
The current release version is `v1.1.0`. All versions require Python 3.10+ to run.
30+
The current release version is `v1.1.1`. All versions require Python 3.10+ to run.
3131

3232
### As a Package
3333

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ include = ["tivars*"]
1111

1212
[project]
1313
name = "tivars"
14-
version = "1.1.0"
14+
version = "1.1.1"
1515
description = "A library for interacting with TI-(e)z80 (82/83/84 series) calculator files"
1616
readme = "README.md"
1717
license = "MIT"

tivars/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
from .var import *
1616

1717

18-
__version__ = "1.1.0"
18+
__version__ = "1.1.1"
1919
__all__ = list({*bundle.__all__, *file.__all__, *flash.__all__, *models.__all__, *tokenizer.__all__, *types.__all__, *var.__all__, "__version__"})

tivars/bundle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def version(self) -> int:
8181

8282
@staticmethod
8383
def bundle(files: list[TIFile], *, name: str = "BUNDLE", model: TIModel = TI_84PCE,
84-
comment: str = "Created with tivars_lib_py v1.1.0",
84+
comment: str = "Created with tivars_lib_py v1.1.1",
8585
target_type: str = "CUSTOM", version: int = 1) -> 'TIBundle':
8686
"""
8787
Compress a list of `TIFile` objects into a bundle

tivars/cli/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
parser.add_argument("-m", "--models", action="version", version=MODEL_LIST,
1919
help="show list of models and exit")
20-
parser.add_argument("-v", "--version", action="version", version="tivars_lib_py 1.1.0",
20+
parser.add_argument("-v", "--version", action="version", version="tivars_lib_py 1.1.1",
2121
help="show tivars_lib_py version and exit")
2222

2323
subparsers = parser.add_subparsers(title="modes", dest="subparser")

tivars/var.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def bytes(self) -> bytes:
6060

6161
def __init__(self, model: TIModel = TI_84PCE, *,
6262
magic: str = None, extra: bytes = b'\x1a\x0a', product_id: int = None,
63-
comment: str = "Created with tivars_lib_py v1.1.0",
63+
comment: str = "Created with tivars_lib_py v1.1.1",
6464
data: bytes = None):
6565
"""
6666
Creates an empty header which targets a specified model

0 commit comments

Comments
 (0)