From d5c63657abb82a94f3524dc455c177051b76a076 Mon Sep 17 00:00:00 2001 From: Vadim Laletin Date: Fri, 1 Jul 2022 09:04:58 +0200 Subject: [PATCH] Bump to 0.1.0 --- CHANGELOG.md | 2 +- README.md | 1 + fhirpathpy/__init__.py | 2 +- setup.py | 1 + 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 339d42b..090fc36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,3 @@ -## 0.0.1 +## 0.1.0 - Initial release diff --git a/README.md b/README.md index b12e429..920d01d 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ fhirpath.py [![Build Status](https://github.com/beda-software/fhirpath-py/actions/workflows/build.yaml/badge.svg)](https://github.com/beda-software/fhirpath-py/actions) [![codecov](https://codecov.io/gh/beda-software/fhirpath-py/branch/master/graph/badge.svg)](https://codecov.io/gh/beda-software/fhirpath-py) +[![pypi](https://img.shields.io/pypi/v/fhirpathpy.svg)](https://pypi.python.org/pypi/fhirpathpy) [![Supported Python version](https://img.shields.io/badge/python-3.7+-blue.svg)](https://www.python.org/downloads/release/python-370/) [FHIRPath](https://www.hl7.org/fhir/fhirpath.html) implementation in Python diff --git a/fhirpathpy/__init__.py b/fhirpathpy/__init__.py index 924f62c..1268697 100644 --- a/fhirpathpy/__init__.py +++ b/fhirpathpy/__init__.py @@ -5,7 +5,7 @@ from fhirpathpy.engine.nodes import FP_Type __title__ = "fhirpathpy" -__version__ = "0.0.1" +__version__ = "0.1.0" __author__ = "beda.software" __license__ = "MIT" __copyright__ = "Copyright 2022 beda.software" diff --git a/setup.py b/setup.py index 1d780c9..0e088df 100644 --- a/setup.py +++ b/setup.py @@ -35,6 +35,7 @@ def get_version(package): url="https://github.com/beda-software/fhirpath-py", project_urls={ "Source Code": "https://github.com/beda-software/fhirpath-py", + "Changelog": "https://github.com/beda-software/fhirpath-py/blob/master/CHANGELOG.md", }, packages=["fhirpathpy"], include_package_data=True,