Skip to content

Commit

Permalink
version 0.4.4 to 0.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
tombaker committed Feb 16, 2023
1 parent 346d7bc commit c27b9b7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ Keywords: Added, Changed, Deprecated, Removed, Fixed, Security.
- Create dictionary of valid values for elements and value constraint types, many of which are currently hard-wired in the shape and statement template classes, for folding into `config_dict` in order to facilitate customization when the classes imported and sub-classed in other packages.
- Possibly remove and replace the arguably over-elaborate "loggers" (`loggers.py`).

## [0.4.5] - 2023-02-16

- Computation of element aliases excludes privates.

## [0.4.4] - 2023-02-08

- Csvreader now looks for prefixes used in value constraints.
Expand Down
2 changes: 1 addition & 1 deletion dctap/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from dctap.tapclasses import TAPShape, TAPStatementTemplate
from dctap.csvreader import csvreader

__version__ = "0.4.4"
__version__ = "0.4.5"

# Keep version number in sync with:
# - https://github.com/dcmi/dctap-python/blob/main/docs/conf.py#L28
Expand Down
2 changes: 1 addition & 1 deletion dctap/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


@click.group()
@click.version_option("0.4.4", help="Show version and exit")
@click.version_option("0.4.5", help="Show version and exit")
@click.help_option(help="Show help and exit")
@click.pass_context
def cli(context):
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

# The full version, including alpha/beta/rc tags
# See ../dctap/__init__.py
release = "0.4.4"
release = "0.4.5"

# -- General configuration ---------------------------------------------------

Expand Down

0 comments on commit c27b9b7

Please sign in to comment.