Skip to content

Commit

Permalink
New version with InkML support.
Browse files Browse the repository at this point in the history
  • Loading branch information
doctorink committed Sep 25, 2024
1 parent db3b798 commit fe4feed
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2024/09/25 - RELEASE 2.1.0
==========================
- Adding parser for InkML files


2024/09/04 - RELEASE 2.0.4
==========================
- Extend export to choose the units for the CSV file
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

# The directory containing this file
HERE = pathlib.Path(__file__).parent
VERSION: str = "2.0.4"
VERSION: str = "2.1.0"

# The text of the README file
README = (HERE / "README.md").read_text()
Expand All @@ -51,7 +51,8 @@
"bitstring>=3.1.7",
"protobuf<4.0.0",
"varint>=1.0.2",
"lxml>=4.6.3"
"lxml>=4.6.3",
"python-dateutil==2.9.0"
],
extras_require={
},
Expand Down
2 changes: 1 addition & 1 deletion uim/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
__maintainer__ = ["Markus Weber"]
__email__ = "markus.weber@wacom.com"
__status__ = "beta"
__version__ = "2.0.4"
__version__ = "2.1.0"

import logging
from typing import Optional
Expand Down

0 comments on commit fe4feed

Please sign in to comment.