From 93ada9fd3117ef51e849b11bdb50f484b6151d8d Mon Sep 17 00:00:00 2001 From: Stepland <16676308+Stepland@users.noreply.github.com> Date: Wed, 8 Dec 2021 03:30:40 +0100 Subject: [PATCH] Bump version to 1.2.3 --- CHANGELOG.md | 2 +- jubeatools/formats/jubeat_analyser/command.py | 3 +-- jubeatools/formats/jubeat_analyser/dump_tools.py | 2 +- jubeatools/version.py | 2 +- pyproject.toml | 2 +- 5 files changed, 5 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 214128c..d985645 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Unreleased +# v1.2.3 ## Fixed - Loaders and Dumpers would recieve options with unwanted default values when their corresponding flags were not passed to the commandline, resulting diff --git a/jubeatools/formats/jubeat_analyser/command.py b/jubeatools/formats/jubeat_analyser/command.py index cbbfbf4..7e03581 100644 --- a/jubeatools/formats/jubeat_analyser/command.py +++ b/jubeatools/formats/jubeat_analyser/command.py @@ -56,8 +56,7 @@ command_grammar = Grammar( class CommandVisitor(NodeVisitor): - """Returns a (key, value) tuple or None if the line contains no useful - information for the parser (a comment or an empty line)""" + """Returns a (key, value) tuple""" def __init__(self, *args: Any, **kwargs: Any) -> None: super().__init__(*args, **kwargs) diff --git a/jubeatools/formats/jubeat_analyser/dump_tools.py b/jubeatools/formats/jubeat_analyser/dump_tools.py index 07aad20..48e9d5d 100644 --- a/jubeatools/formats/jubeat_analyser/dump_tools.py +++ b/jubeatools/formats/jubeat_analyser/dump_tools.py @@ -1,4 +1,4 @@ -"""Collection of tools realted to dumping to jubeat analyser formats""" +"""Collection of tools related to dumping to jubeat analyser formats""" from abc import ABC, abstractmethod from dataclasses import dataclass, field diff --git a/jubeatools/version.py b/jubeatools/version.py index bc86c94..10aa336 100644 --- a/jubeatools/version.py +++ b/jubeatools/version.py @@ -1 +1 @@ -__version__ = "1.2.2" +__version__ = "1.2.3" diff --git a/pyproject.toml b/pyproject.toml index 5036178..6a71b39 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "jubeatools" -version = "1.2.2" +version = "1.2.3" description = "A toolbox for jubeat file formats" authors = ["Stepland <16676308+Stepland@users.noreply.github.com>"] readme = "README.md"