nedb-engine 8.8.8 → 8.8.9

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/README.md CHANGED
@@ -171,18 +171,25 @@ evaluator with no flag to set, the `nesql` CLI likewise.
171
171
  [![neSQL on crates.io](https://img.shields.io/crates/v/nesql?label=nesql%20·%20crates.io&color=a855f7)](https://crates.io/crates/nesql)
172
172
  [![neSQL on npm](https://img.shields.io/npm/v/nesql-engine?label=nesql-engine%20·%20npm&color=a855f7)](https://www.npmjs.com/package/nesql-engine)
173
173
 
174
- Those three badges read **0.0.1** next to an engine at 8.0.0, and that is
175
- deliberate rather than neglected. They are **reserved names**: each package loads,
176
- reports the vendored PostgreSQL release, and answers `is_release() == false`,
177
- because a package that imports cleanly and then lies is worse than one that is not
178
- published. The engine you actually install is `nedb-engine`. The
179
- [neSQL repository](https://github.com/Eth-Interchained/neSQL) holds the language —
180
- both halves of the grammar and the CLI's source, side by side.
174
+ The three neSQL packages are **real and version-aligned with the engine** the
175
+ badges above are live registry state, not placeholders. They split by delivery
176
+ path, not by function:
177
+
178
+ | package | registry | what it is |
179
+ |---|---|---|
180
+ | [`nesql`](https://crates.io/crates/nesql) | crates.io | **the real CLI crate** `cargo add nesql`, builds against the registry engine |
181
+ | [`nesql`](https://pypi.org/project/nesql/) | PyPI | the language reference (vendored-grammar facts, clause extensions) |
182
+ | [`nesql-engine`](https://www.npmjs.com/package/nesql-engine) | npm | the language reference |
183
+
184
+ The [neSQL repository](https://github.com/Eth-Interchained/neSQL) is the language's
185
+ home: the vendored PostgreSQL grammar with its licence intact, the CLI crate source,
186
+ the NQL grammar reference, and the NEDB specs. And because the CLI is also staged
187
+ into every platform build of the engine (below), **one install carries everything**:
181
188
 
182
189
  ### `nesql` — the CLI, and it speaks neSQL
183
190
 
184
- Ships inside `pip install nedb-engine` — no daemon, no port and answers both
185
- halves of the language through **one** `query` command:
191
+ Ships inside `pip install nedb-engine` — no daemon, no port, the compiled binary on
192
+ your PATH — and answers both halves of the language through **one** `query` command:
186
193
 
187
194
  ```console
188
195
  $ nesql --db ./store query "SELECT who, total FROM orders ORDER BY total DESC"
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nedb-engine",
3
- "version": "8.8.8",
3
+ "version": "8.8.9",
4
4
  "description": "NEDB \u2014 hash-chained, time-traveling, bi-temporal embedded database with Rust native core. SQL, Redis, MongoDB adapters. Causal Write Provenance. RESP2 wire protocol.",
5
5
  "main": "index.js",
6
6
  "exports": {