diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c629a1..41cf428 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## Summary * [**Unreleased**](#unreleased) +* [**Release 2024-02-05 v0.0.48**](#release-2024-02-05-v0048) Update apikey; If rsp is not json, text, asn.1, return dict from xml format * [**Release 2023-11-19 v0.0.47**](#release-2023-11-19-v0047) GNU AGPLv3; Add function to summarize a set of papers * [**Release 2023-08-18 v0.0.45**](#release-2023-08-18-v0045) GNU Affero General Public License v3.0 (GNU AGPLv3) * [**Release 2022-12-22 v0.0.43**](#release-2023-01-30-v0043) Add @scbarrera's PR @@ -46,6 +47,10 @@ ### Unreleased +### release 2024-02-05 v0.0.48 +* UPDATE apikey: Separate apikey into its own variable in its own module +* UPDATE src/pmidcite/eutils/cmds/base.py: If rsp is not json, text, asn.1, return dict from xml format + ### release 2023-11-19 v0.0.47 * UPDATE codeql-analysis.yml by @manodeep in #54 * UPDATE GNU Affero General Public License v3.0 (GNU AGPLv3) & more Copyrights by @dvklopfenstein in #56 diff --git a/setup.py b/setup.py index 3721bf3..6ab3538 100755 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ def get_long_description(): setup( name=NAME, - version='0.0.47', + version='0.0.48', author='DV Klopfenstein, PhD', author_email='dvklopfenstein@protonmail.com', packages=PACKAGES, diff --git a/src/pmidcite/__version__.py b/src/pmidcite/__version__.py index fb7c3e8..b9de5d7 100644 --- a/src/pmidcite/__version__.py +++ b/src/pmidcite/__version__.py @@ -2,6 +2,6 @@ __copyright__ = 'Copyright (C) 2019-present, DV Klopfenstein, PhD. All rights reserved' __author__ = 'DV Klopfenstein, PhD' -__version__ = '0.0.47' +__version__ = '0.0.48' # Copyright (C) 2019-present, DV Klopfenstein, PhD. All rights reserved