1
0
mirror of synced 2024-12-04 19:17:55 +01:00

Bump version to 1.2.3

This commit is contained in:
Stepland 2021-12-08 03:30:40 +01:00
parent 0d3b370fc9
commit 93ada9fd31
5 changed files with 5 additions and 6 deletions

View File

@ -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

View File

@ -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)

View File

@ -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

View File

@ -1 +1 @@
__version__ = "1.2.2"
__version__ = "1.2.3"

View File

@ -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"