From 4472cb683069fdbaa02e6cc4e1a15c1c73e4a941 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 9 Feb 2024 17:00:10 +0000 Subject: [PATCH] chore(release): 0.3.0 --- docs/changelog.md | 7 +++++++ pyproject.toml | 2 +- src/pymedx/__init__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index a17cc7cf..96e50f4f 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,13 @@ # Release Notes --- +# [0.3.0](https://github.com/osl-incubator/pymedx/compare/0.2.1...0.3.0) (2024-02-09) + + +### Features + +* add pmc as a source for fetching articles data ([#7](https://github.com/osl-incubator/pymedx/issues/7)) ([3bb3536](https://github.com/osl-incubator/pymedx/commit/3bb353627e3f9db0300f73d0084f174e0fedd48e)) + ## [0.2.1](https://github.com/osl-incubator/pymedx/compare/0.2.0...0.2.1) (2024-02-04) diff --git a/pyproject.toml b/pyproject.toml index cca5829e..bd3d8883 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pymedx" -version = "0.2.1" # semantic-release +version = "0.3.0" # semantic-release description = "PyMedX is a tool set for handling multimedia files." readme = "docs/index.md" authors = ["Gijs Wobben ", "Ivan Ogasawara "] diff --git a/src/pymedx/__init__.py b/src/pymedx/__init__.py index 57d7f817..f6097b89 100644 --- a/src/pymedx/__init__.py +++ b/src/pymedx/__init__.py @@ -10,7 +10,7 @@ def get_version(): try: return importlib_metadata.version(__name__) except importlib_metadata.PackageNotFoundError: # pragma: no cover - return "0.2.1" # semantic-release + return "0.3.0" # semantic-release version = get_version()