Skip to content

Commit

Permalink
Fix version and vidinfo parsing in vidinfo.py and version
Browse files Browse the repository at this point in the history
  • Loading branch information
zackees committed Jul 12, 2024
1 parent c022026 commit 56b6396
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ Running tox will install hooks into the .tox directory. Keep this in my if you a
TODO: Add a cleanup function to undo this.

# Release Notes
* 1.4.89: Fixes `vidinfo --full` not being able to parse json with trailing commas.
* 1.4.88: `aicode` now has minimal version 1.1.0
* 1.4.87: `aicode` has been externalized into package `advanced-aicode`, but can still be invoked using `aicode`.
* 1.4.86: New tool `git-diff`
Expand Down
3 changes: 2 additions & 1 deletion src/zcmds/cmds/common/vidinfo.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# pylint: skip-file

import argparse
import json
import os
import subprocess
import sys
from typing import Tuple

import json5 as json


def exec(cmd: str) -> Tuple[int, str, str]:
proc = subprocess.Popen(
Expand Down
2 changes: 1 addition & 1 deletion src/zcmds/version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Just holds the version for the app"""

# Also change version in pyproject.toml
VERSION = "1.4.88" # pylint: disable=R0801
VERSION = "1.4.89" # pylint: disable=R0801
__version__ = VERSION

0 comments on commit 56b6396

Please sign in to comment.