Skip to content

Commit 3eea1d0

Browse files
committed
Bump to 2.2.0
1 parent 9065548 commit 3eea1d0

3 files changed

Lines changed: 9 additions & 5 deletions

File tree

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
strategy:
1111
matrix:
1212
include:
13-
- python-version: 3.9
1413
- python-version: "3.10"
1514
- python-version: "3.11"
1615
- python-version: "3.12"
16+
- python-version: "3.14"
1717
env:
1818
PYTHON: ${{ matrix.python-version }}
1919
steps:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 2.2.0
2+
3+
- Add helpers for compile_as_first and compile_as_array #63 @projkov @ruscoder
4+
- Add py.typed marker, specify types for compile, evaluate
5+
- Drop support for python 3.9
6+
17
## 2.1.0
28

39
- Fix bug with $this evaluation context in function invocations #60 @brianpos

fhirpathpy/__init__.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import annotations
2-
31
from collections.abc import Callable, Mapping, Sequence
42
from typing import Any, Protocol, TypeAlias, TypeVar, cast
53

@@ -10,10 +8,10 @@
108
from fhirpathpy.parser import parse
119

1210
__title__ = "fhirpathpy"
13-
__version__ = "2.1.0"
11+
__version__ = "2.2.0"
1412
__author__ = "beda.software"
1513
__license__ = "MIT"
16-
__copyright__ = "Copyright 2025 beda.software"
14+
__copyright__ = "Copyright 2026 beda.software"
1715

1816
# Version synonym
1917
VERSION = __version__

0 commit comments

Comments
 (0)