Skip to content

Commit f0871c2

Browse files
committed
chore: version bump
1 parent 924021c commit f0871c2

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change log for CommonPy
22

3+
## Version 1.12.4
4+
5+
Changes in this release:
6+
* Revise the retry algorithm in `timed_request()` again.
7+
* Make `timed_request()` print the response text in case of failures
8+
* Remove `extra_requires` from `setup.py` because it caused installation problems due to the syntax of the requirements file and I don't have patience for figuring out what `setuptools` needs this time.
9+
10+
311
## Version 1.12.3
412

513
This release updates the version of the `dateparser` package in `requirements.txt`, to avoid a deprecation warning when using CommonPy's `parsed_datetime(...)` function.

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ cff-version: "1.1.0"
1010
message: "If you use this software, please cite it using these metadata."
1111
repository-code: "https://github.com/caltechlibrary/commonpy"
1212
title: "CommonPy: assortment of Python helper functions and utility classes"
13-
date-released: 2023-04-09
14-
version: "1.12.3"
13+
date-released: 2023-04-21
14+
version: "1.12.4"
1515
doi: 10.22002/20217
1616
keywords:
1717
- Python

codemeta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"codeRepository": "https://github.com/caltechlibrary/commonpy",
77
"issueTracker": "https://github.com/caltechlibrary/commonpy/issues",
88
"license": "https://github.com/caltechlibrary/commonpy/blob/master/LICENSE",
9-
"version": "1.12.3",
9+
"version": "1.12.4",
1010
"author": [
1111
{
1212
"@type": "Person",

commonpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# | by the Makefile. Manual changes to these values will be lost. |
2222
# ╰────────────────────── Notice ── Notice ── Notice ─────────────────────╯
2323

24-
__version__ = '1.12.3'
24+
__version__ = '1.12.4'
2525
__description__ = 'Assortment of Python helper functions and utility classes'
2626
__url__ = 'https://github.com/caltechlibrary/commonpy'
2727
__author__ = 'Michael Hucka'

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
[metadata]
1010
name = commonpy
11-
version = 1.12.3
11+
version = 1.12.4
1212
description = Assortment of Python helper functions and utility classes
1313
author = Michael Hucka
1414
author_email = mhucka@caltech.edu

0 commit comments

Comments
 (0)