From 099cc5406e9b9743d026af01515b806a1734d695 Mon Sep 17 00:00:00 2001 From: finlayclark Date: Sat, 23 Sep 2023 17:23:37 +0100 Subject: [PATCH] Bump version number and add changelog --- CHANGELOG.md | 6 ++++++ k2dg/_cli.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md 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"