Skip to content

Commit f2701d0

Browse files
authored
chore: release v0.3.0.1 (#33)
1 parent d4bd127 commit f2701d0

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
## Unreleased
5+
## 0.3.0.1
66

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

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# aeson-jsonpath
22

3-
![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)
3+
![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)
44

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

@@ -116,14 +116,14 @@ Right [
116116
])
117117
]
118118

119-
ghci> queryLocated "$.shop.movies[?@.director == 'Xavier Dolan']" json
119+
ghci> queryLocated "$.shop.movies[?@.director == 'Panos Cosmatos']" json
120120
Right [
121121
(
122-
"$['shop']['movies'][1]",
122+
"$['shop']['movies'][0]",
123123
Object (fromList [
124-
("director",String "Xavier Dolan"),
125-
("title",String "Lawrence Anyways"),
126-
("year",Number 2012.0)
124+
("director",String "Panos Cosmatos"),
125+
("title",String "Mandy"),
126+
("year",Number 2018.0)
127127
])
128128
)
129129
]

0 commit comments

Comments
 (0)