jjpwrgem 0.2.2 → 0.3.1

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.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.3.1](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.3.1) - 2025-12-08
11
+
12
+ ### Performance
13
+
14
+ - avoid using fmt machinery in hot paths, instead pushing directly
15
+
16
+ ## [0.3.0](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.3.0) - 2025-12-08
17
+
18
+ ### Added
19
+
20
+ - axolotl logo in version screen
21
+ - consistent key ordering
22
+
23
+ ### Deprecated
24
+
25
+ - removed help subcommand
26
+
27
+ ### Documentation
28
+
29
+ - autogenerate examples and add examples to subcommands
30
+ - update readme with correct command
31
+ - add xtask to generate readmes
32
+
33
+ ### Performance
34
+
35
+ - TokenStream iterator instead of collecting into intermediary Vec
36
+
37
+
10
38
  ## [0.2.2](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.2.2) - 2025-12-07
11
39
 
12
40
  ### Documentation
@@ -23,7 +23,7 @@
23
23
  "hasInstallScript": true,
24
24
  "license": "MIT",
25
25
  "name": "jjpwrgem",
26
- "version": "0.2.2"
26
+ "version": "0.3.1"
27
27
  },
28
28
  "node_modules/@isaacs/balanced-match": {
29
29
  "engines": {
@@ -896,5 +896,5 @@
896
896
  }
897
897
  },
898
898
  "requires": true,
899
- "version": "0.2.2"
899
+ "version": "0.3.1"
900
900
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "artifactDownloadUrl": "https://github.com/20jasper/jjpwrgem/releases/download/jjpwrgem-v0.2.2",
2
+ "artifactDownloadUrl": "https://github.com/20jasper/jjpwrgem/releases/download/jjpwrgem-v0.3.1",
3
3
  "author": "Jacob Asper <jacobasper191@gmail.com>",
4
4
  "bin": {
5
5
  "jjp": "run-jjp.js"
@@ -93,7 +93,7 @@
93
93
  "zipExt": ".tar.xz"
94
94
  }
95
95
  },
96
- "version": "0.2.2",
96
+ "version": "0.3.1",
97
97
  "volta": {
98
98
  "node": "18.14.1",
99
99
  "npm": "9.5.0"
package/readme.md CHANGED
@@ -1,3 +1,5 @@
1
+ <!-- GENERATED FILE - update the templates in the xtask -->
2
+
1
3
  # JJPWRGEM
2
4
 
3
5
  JJPWRGEM JSON Parser With Really Good Error Messages
@@ -7,38 +9,29 @@ An RFC 8259 compliant JSON Parser and formatter!
7
9
  ![A logo of an axolotl riding a skateboard](./logo.webp)
8
10
 
9
11
  ```
10
- echo -en '{"coolKey"}' | jjp parse
12
+ $ echo -en "{\"coolKey\"}" | jjp check
11
13
  error: expected colon after key, found `}`
12
- ╭▸ stdin:1:11
13
-
14
- 1 {"coolKey"}
15
- ┬────────━
16
-
17
- expected due to `"coolKey"`
18
- ╰╴
14
+ --> stdin:1:11
15
+ |
16
+ 1 | {"coolKey"}
17
+ | ---------^
18
+ | |
19
+ | expected due to `"coolKey"`
20
+ |
19
21
  help: insert colon and placeholder value
20
- ╭╴
21
- 1 {"coolKey": "🐟🛹"}
22
- ╰╴ ++++++++
22
+ |
23
+ 1 | {"coolKey": "🐟🛹"}
24
+ | ++++++++
25
+
23
26
  ```
24
27
 
25
28
  ## Table of contents
26
29
 
27
- - [JJPWRGEM](#jjpwrgem)
28
- - [Table of contents](#table-of-contents)
29
- - [Installation](#installation)
30
- - [Precompiled](#precompiled)
31
- - [From source](#from-source)
32
- - [Stability](#stability)
33
- - [Indeterminate Handling](#indeterminate-handling)
34
- - [FAQ](#faq)
35
- - [What does JJPWRGEM stand for?](#what-does-jjpwrgem-stand-for)
36
- - [How do you pronounce JJPWRGEM?](#how-do-you-pronounce-jjpwrgem)
37
- - [But why is it called that?](#but-why-is-it-called-that)
38
- - [Why is the logo an axolotl riding a skateboard?](#why-is-the-logo-an-axolotl-riding-a-skateboard)
39
- - [Is it blazingly fast™?](#is-it-blazingly-fast)
40
- - [How long is an axolotl?](#how-long-is-an-axolotl)
41
- - [Motivations](#motivations)
30
+ - [Table of contents](#table-of-contents)
31
+ - [Installation](#installation)
32
+ - [Stability](#stability)
33
+ - [FAQ](#faq)
34
+ - [Motivations](#motivations)
42
35
 
43
36
  ## Installation
44
37
 
@@ -56,7 +49,7 @@ See [releases](https://github.com/20jasper/JJPWRGEM/releases) for shell and powe
56
49
 
57
50
  ### From source
58
51
 
59
- ```
52
+ ```bash
60
53
  cargo install --path .
61
54
  ```
62
55