You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+27-27Lines changed: 27 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,13 +12,13 @@ Usage
12
12
13
13
First, you need Java 8 or later.
14
14
15
-
If you use Maven, add the following snippet to the `<dependencies>` section of your POM. For instructions for other build tools (Gradle, etc.), visit [jackson-jq](https://search.maven.org/artifact/net.thisptr/jackson-jq/1.0.0-preview.20210928/jar) on search.maven.org.
15
+
If you use Maven, add the following snippet to the `<dependencies>` section of your POM. For instructions for other build tools (Gradle, etc.), visit [jackson-jq](https://search.maven.org/artifact/net.thisptr/jackson-jq/1.0.0-preview.20220704/jar) on search.maven.org.
16
16
17
17
```xml
18
18
<dependency>
19
19
<groupId>net.thisptr</groupId>
20
20
<artifactId>jackson-jq</artifactId>
21
-
<version>1.0.0-preview.20210928</version>
21
+
<version>1.0.0-preview.20220704</version>
22
22
</dependency>
23
23
```
24
24
@@ -32,29 +32,29 @@ To test a query quickly, we provide jackson-jq CLI.
32
32
*Please note that jackson-jq is a Java library and the CLI is provided solely for debugging/testing purpose (and not for production). The command-line options might change without notice.*
jq: error: string ("-") and number (2) cannot be added
56
56
57
-
$ java -jar jackson-jq-cli-1.0.0-preview.20210928.jar --jq 1.6 'join("-")'# jq-1.6 can join any values, not only strings
57
+
$ java -jar jackson-jq-cli-1.0.0-preview.20220704.jar --jq 1.6 'join("-")'# jq-1.6 can join any values, not only strings
58
58
["1", 2]
59
59
"1-2"
60
60
```
@@ -66,7 +66,7 @@ Branches and versioning
66
66
67
67
There are currently two development branches.
68
68
69
-
*`develop/1.x`: This branch (you are viewing), which is currently under development for the future 1.0 release. The API is **not** stable yet. You can find preview releases (not stable, not recommended for production) at [Releases](https://github.com/eiiches/jackson-jq/releases) page (tags: `1.0.0-preview.yyyyMMdd`).
69
+
*`develop/1.x`: This branch (you are viewing), which is currently under development for the future 1.0 release. You can find preview releases at [Releases](https://github.com/eiiches/jackson-jq/releases) page (tags: `1.0.0-preview.yyyyMMdd`). Although the API is not stable yet, I recommend new users to use these releases insetad of 0.x versions, because these releases have more features, better compatibility, and better performance.
70
70
*`develop/0.x`: The development branch for 0.x versions. Features that need breaking API changes will no longer be added. Go to [Releases](https://github.com/eiiches/jackson-jq/releases) and find the latest 0.x.y version.
71
71
72
72
PRs can be sent to any of the develop/\* branches. The patch will be ported to the other branch(es) if necessary.
@@ -207,10 +207,10 @@ This table illustrates which features (picked from jq-1.5 manual) are supported
| •[`import RelativePathString as NAME [<metadata>];`](https://stedolan.github.io/jq/manual/v1.5/#importRelativePathStringasNAME[<metadata>];)|×|
| •[`import RelativePathString as $NAME [<metadata>];`](https://stedolan.github.io/jq/manual/v1.5/#importRelativePathStringas$NAME[<metadata>];)|×|
| •[`import RelativePathString as NAME [<metadata>];`](https://stedolan.github.io/jq/manual/v1.5/#importRelativePathStringasNAME[<metadata>];)|○|
| •[`import RelativePathString as $NAME [<metadata>];`](https://stedolan.github.io/jq/manual/v1.5/#importRelativePathStringas$NAME[<metadata>];)|○|
0 commit comments