Skip to content

Commit

Permalink
Bump version number and add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
fjclark committed Sep 23, 2023
1 parent d32840d commit 099cc54
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion k2dg/_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 099cc54

Please sign in to comment.