Skip to content

Commit

Permalink
chore: release v0.3.0.1 (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
taimoorzaeem authored Jan 17, 2025
1 parent d4bd127 commit f2701d0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

All notable changes to this package are documented in this file. This project adheres to [Haskell PVP](https://pvp.haskell.org/) versioning.

## Unreleased
## 0.3.0.1

- #31, Fix `test/cts.json` not included in hackage bundle

Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# aeson-jsonpath

![ci-badge](https://github.com/taimoorzaeem/aeson-jsonpath/actions/workflows/build.yml/badge.svg?event=push) [![hackage-docs](https://img.shields.io/badge/hackage-v0.3.0.0-blue)](https://hackage.haskell.org/package/aeson-jsonpath)
![ci-badge](https://github.com/taimoorzaeem/aeson-jsonpath/actions/workflows/build.yml/badge.svg?event=push) [![hackage-docs](https://img.shields.io/badge/hackage-v0.3.0.1-blue)](https://hackage.haskell.org/package/aeson-jsonpath) [![Donate](https://img.shields.io/badge/Donate-Patreon-red)](https://www.patreon.com/taimoorzaeem) ![Compliance](https://img.shields.io/badge/Compliance-Passing-brightgreen)

Run [RFC 9535](https://www.rfc-editor.org/rfc/rfc9535) compliant JSONPath queries on [Data.Aeson](https://hackage.haskell.org/package/aeson).

Expand Down Expand Up @@ -116,14 +116,14 @@ Right [
])
]

ghci> queryLocated "$.shop.movies[?@.director == 'Xavier Dolan']" json
ghci> queryLocated "$.shop.movies[?@.director == 'Panos Cosmatos']" json
Right [
(
"$['shop']['movies'][1]",
"$['shop']['movies'][0]",
Object (fromList [
("director",String "Xavier Dolan"),
("title",String "Lawrence Anyways"),
("year",Number 2012.0)
("director",String "Panos Cosmatos"),
("title",String "Mandy"),
("year",Number 2018.0)
])
)
]
Expand Down

0 comments on commit f2701d0

Please sign in to comment.