Skip to content

Commit 3dcaa5c

Browse files
committed
Bump to 2.0.2
1 parent ac13073 commit 3dcaa5c

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.2
2+
3+
- Increase performance of parsing #54 @ruscoder
4+
15
## 2.0.1
26

37
- Fix of the bug with multiple user-defined functions @kpcurai @ruscoder

fhirpathpy/__init__.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from fhirpathpy.engine.nodes import FP_Type, ResourceNode
66

77
__title__ = "fhirpathpy"
8-
__version__ = "2.0.1"
8+
__version__ = "2.0.2"
99
__author__ = "beda.software"
1010
__license__ = "MIT"
1111
__copyright__ = "Copyright 2025 beda.software"
@@ -103,6 +103,4 @@ def compile(path, model=None, options=None):
103103
104104
For example, you could pass in the result of require("fhirpath/fhir-context/r4")
105105
"""
106-
return set_paths(
107-
apply_parsed_path, parsedPath=parse(path), model=model, options=options
108-
)
106+
return set_paths(apply_parsed_path, parsedPath=parse(path), model=model, options=options)

0 commit comments

Comments
 (0)