Skip to content

Commit 192dff0

Browse files
chore(release): 0.5.0
1 parent 0ad3c25 commit 192dff0

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

docs/changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Release Notes
22
---
33

4+
# [0.5.0](https://github.com/osl-incubator/pymedx/compare/0.4.0...0.5.0) (2024-05-24)
5+
6+
7+
### Features
8+
9+
* allow pymedx to retrieve more than 10k articles from PubMed database ([#14](https://github.com/osl-incubator/pymedx/issues/14)) ([013f0d0](https://github.com/osl-incubator/pymedx/commit/013f0d0ebac16cf79032e58c05c37368d36410e1))
10+
411
# [0.4.0](https://github.com/osl-incubator/pymedx/compare/0.3.1...0.4.0) (2024-05-17)
512

613

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pymedx"
3-
version = "0.4.0" # semantic-release
3+
version = "0.5.0" # semantic-release
44
description = "PyMedX is a tool set for handling multimedia files."
55
readme = "docs/index.md"
66
authors = ["Gijs Wobben <gijswobben@gmail.com>", "Ivan Ogasawara <ivan.ogasawara@gmail.com>"]

src/pymedx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def get_version():
1010
try:
1111
return importlib_metadata.version(__name__)
1212
except importlib_metadata.PackageNotFoundError: # pragma: no cover
13-
return "0.4.0" # semantic-release
13+
return "0.5.0" # semantic-release
1414

1515

1616
version = get_version()

0 commit comments

Comments
 (0)