Skip to content

Commit

Permalink
Merge pull request #61 from dvklopfenstein/dev
Browse files Browse the repository at this point in the history
author tidy; new v0.0.47
  • Loading branch information
dvklopfenstein authored Nov 19, 2023
2 parents 3975821 + 959835b commit 530ab83
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Summary

* [**Unreleased**](#unreleased)
* [**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
* [**Release 2022-12-22 v0.0.42**](#release-2022-12-22-v0042) Added summarize_papers script
Expand Down Expand Up @@ -45,6 +46,16 @@

### Unreleased

### 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
* UPDATE for pytest
* UPDATE Copyright cleanup
* ADD function get_indexs
* ADD function summarize_papers
* ADD QUERY to summary prints by @dvklopfenstein in #59
* Run workflow by @dvklopfenstein in #60

### release 2023-08-18 v0.0.45
* ADDED GNU Affero General Public License v3.0 (GNU AGPLv3)
* CHANGED DV Klopfenstein to DV Klopfenstein, PhD
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def get_long_description():

setup(
name=NAME,
version='0.0.45',
version='0.0.47',
author='DV Klopfenstein, PhD',
author_email='dvklopfenstein@protonmail.com',
packages=PACKAGES,
Expand Down
2 changes: 1 addition & 1 deletion src/pmidcite/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Code to access NIH's iCite API"""

__copyright__ = 'Copyright (C) 2019-present, DV Klopfenstein, PhD. All rights reserved'
__author__ = 'DV Klopfenstein, PhD.'
__author__ = 'DV Klopfenstein, PhD'


# Copyright (C) 2019-present, DV Klopfenstein, PhD. All rights reserved
4 changes: 2 additions & 2 deletions src/pmidcite/__version__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Version of pmidcite project"""

__copyright__ = 'Copyright (C) 2019-present, DV Klopfenstein, PhD. All rights reserved'
__author__ = ' DV Klopfenstein, PhD.
__version__ = '0.0.45'
__author__ = 'DV Klopfenstein, PhD'
__version__ = '0.0.47'

# Copyright (C) 2019-present, DV Klopfenstein, PhD. All rights reserved
2 changes: 1 addition & 1 deletion src/pmidcite/eutils/cmds/efetch.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Fetch items and write"""
# https://www.ncbi.nlm.nih.gov/books/NBK25499/#chapter4.EFetch

__author__ = 'DV Klopfenstein, PhD.'
__author__ = 'DV Klopfenstein, PhD'
__copyright__ = "Copyright (C) 2016-present DV Klopfenstein, PhD. All rights reserved."
__license__ = "GNU AGPLv3"

Expand Down
2 changes: 1 addition & 1 deletion src/pmidcite/eutils/cmds/query_ids.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# https://www.ncbi.nlm.nih.gov/books/NBK25499/#chapter4.ESearch

__copyright__ = "Copyright (C) 2020-present DV Klopfenstein, PhD. All rights reserved."
__author__ = 'DV Klopfenstein, PhD.'
__author__ = 'DV Klopfenstein, PhD'

import sys
from pmidcite.eutils.cmds.base import EntrezUtilities
Expand Down

0 comments on commit 530ab83

Please sign in to comment.