diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..6fdcc57 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,6 @@ +# Changelog + +## [0.1.2] - 23-09-2023 + +### Changed +- Decoupled the creation of the strings to be printed from the printing itself. This makes it easier to use k2dg as a library. \ No newline at end of file diff --git a/k2dg/_cli.py b/k2dg/_cli.py index 65692da..1d419b0 100644 --- a/k2dg/_cli.py +++ b/k2dg/_cli.py @@ -18,7 +18,7 @@ def run_cli() -> None: global_parser = argparse.ArgumentParser(prog="k2dg") global_parser.add_argument( - "-v", "--version", action="version", version="%(prog)s 0.1.1" + "-v", "--version", action="version", version="%(prog)s 0.1.2" ) subparsers = global_parser.add_subparsers( title="subcommands", diff --git a/pyproject.toml b/pyproject.toml index 05f74ee..c356dce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "k2dg" -version = "0.1.1" +version = "0.1.2" description = "A simple command line app to interconvert dissociation constants and free energies of binding." authors = [{name = "Finlay Clark"}] readme = "README.md"