fhirpath 0.2.0.pre2 → 0.2.0.pre3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 214b8bf3637ea378e16e6a60c8427b8ef7ba6e6fa25a8c9612d43ee4b4e710aa
4
- data.tar.gz: e581ba72d78a0c59a90eac7c882ec1f2e1069415022ce029529e643c3158ecbb
3
+ metadata.gz: 55816199de3a062086023e1a40abdf4bf5496eab085f56d09c40348f3ef12099
4
+ data.tar.gz: e1a22be7cd54908b7824217559b82211feed90eda7884fe898341734875e05d8
5
5
  SHA512:
6
- metadata.gz: 29028eef4e40be4d55d69c5bebd874ae19cf606cef528d34296dc84960e00c5e5e99fa06ff8ebe2196250f857499d817511fcca71df70518dfbb06026721714b
7
- data.tar.gz: 26e1734ac098eeaf716bca1955993da406b06652bf1ccf0b238e17d7ff8a015b2cd23b6bfbaf69dc420ca5c6663e8c055c47998676bf66bca014f2b8dce25952
6
+ metadata.gz: 40667a9301563b5e7b8112234fcaaa13e9838efb83f5350b3aa5cd0aeb7ff40417320c8d296152c42a401873c857c5492ef20b3950434a525b4e36f46888d280
7
+ data.tar.gz: 166e58f9d11b4abe1c6ce4f646b367b1ff6da7f7273983d10442c40bc8757bc70b859fc02097ac657185e1d01df27cd6efd7d996684c24f9ac1a06116d542730
data/CHANGELOG.md CHANGED
@@ -4,6 +4,13 @@ All notable changes to this project are documented here. The project is pre-1.0;
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [0.2.0.pre3] - 2026-09-06
8
+ - Same library content as `0.2.0.pre2`. Version bumped because the earlier
9
+ `0.2.0.pre2` tag was pushed to RubyGems by a partial release run before the
10
+ workflow fix landed in PR #50, and RubyGems rejects repushing the same
11
+ version. Library code, capability set, and feature matrix are unchanged
12
+ from `0.2.0.pre2`; only the gem version and this changelog entry differ.
13
+
7
14
  ## [0.2.0.pre2] - 2026-09-06
8
15
  - Add the `ofType()` function to the standard registry. Filters the receiver
9
16
  collection to items whose runtime type matches the specified type identifier
@@ -1,6 +1,6 @@
1
1
  # Feature and capability matrix
2
2
 
3
- Status: `0.2.0.pre2`; target release: FHIRPath `2.0.0`; publication contract: [`support-matrix.md`](support-matrix.md)
3
+ Status: `0.2.0.pre3`; target release: FHIRPath `2.0.0`; publication contract: [`support-matrix.md`](support-matrix.md)
4
4
 
5
5
  This matrix is deliberately conservative. `Supported` means the behavior is exercised by the Ruby test suite or the checked-in vector corpus. `Deferred` means callers should expect a structured unsupported/unknown error. `Host-dependent` requires an adapter or injected service that is not shipped here.
6
6
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  This checklist is the gate for a reusable public release. It is intentionally explicit because a successful gem build is not the same as a legally releasable or conformant package.
4
4
 
5
- ## Current assessment (`0.2.0.pre1`)
5
+ ## Current assessment (`0.2.0.pre3`)
6
6
 
7
7
  | Criterion | Status | Evidence / rationale |
8
8
  |---|---|---|
@@ -44,7 +44,7 @@ Verification on Homebrew Ruby 4.0.4 (the repository's local bundle contains nati
44
44
  - `bundle exec rake test`: 50 runs, 191 assertions, 0 failures, 0 errors, 0 skips;
45
45
  - `bundle exec rubocop`: 31 files inspected, no offenses;
46
46
  - `bundle exec rake vectors`: 8 total, 8 pass, 0 defect, 0 unsupported, 0 host-dependent, 0 not-run;
47
- - `bundle exec rake build`: `pkg/fhirpath-0.2.0.pre1.gem` built;
47
+ - `bundle exec rake build`: `pkg/fhirpath-0.2.0.pre3.gem` built;
48
48
  - `script/verify_gem_install.sh`: clean isolated install and `1 + 2` smoke test passed;
49
49
  - `COVERAGE=1 bundle exec rake test` plus `script/check_coverage.rb`: 88.9% (829/932 executable lines); and
50
50
  - `git diff --check`: passed.
@@ -1,6 +1,6 @@
1
1
  # Release support matrix
2
2
 
3
- Status: `pre-release` (`0.2.0.pre2`)
3
+ Status: `pre-release` (`0.2.0.pre3`)
4
4
 
5
5
  This is the release-facing support matrix. It is deliberately narrower than
6
6
  "FHIRPath-compatible": every supported claim must have executable evidence, and
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FHIRPath
4
- VERSION = '0.2.0.pre2'
4
+ VERSION = '0.2.0.pre3'
5
5
  # A stable release requires the complete release gate to be deliberately
6
6
  # promoted. Keep pre-release status explicit while the shared-suite and
7
7
  # model-adapter work remains incomplete.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fhirpath
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0.pre2
4
+ version: 0.2.0.pre3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicco Reyes