sqlmath 2023.10.25 → 2023.11.22

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
@@ -4,6 +4,9 @@
4
4
  - sqlmath - Add sqlite-extension for lightgbm.
5
5
  - none
6
6
 
7
+ # v2023.11.22
8
+ - sqlmath - Add sql-functions normalizewithsquared(), squaredwithsign().
9
+
7
10
  # v2023.10.25
8
11
  - jslint - Update jslint to v2023.10.24.
9
12
  - sqlmath - Split monolithic-file sqlite_rollup.c into separate files:
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
  # Status
5
- | Branch | [master<br>(v2023.10.25)](https://github.com/sqlmath/sqlmath/tree/master) | [beta<br>(Web Demo)](https://github.com/sqlmath/sqlmath/tree/beta) | [alpha<br>(Development)](https://github.com/sqlmath/sqlmath/tree/alpha) |
5
+ | Branch | [master<br>(v2023.11.22)](https://github.com/sqlmath/sqlmath/tree/master) | [beta<br>(Web Demo)](https://github.com/sqlmath/sqlmath/tree/beta) | [alpha<br>(Development)](https://github.com/sqlmath/sqlmath/tree/alpha) |
6
6
  |--:|:--:|:--:|:--:|
7
7
  | CI | [![ci](https://github.com/sqlmath/sqlmath/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/sqlmath/sqlmath/actions?query=branch%3Amaster) | [![ci](https://github.com/sqlmath/sqlmath/actions/workflows/ci.yml/badge.svg?branch=beta)](https://github.com/sqlmath/sqlmath/actions?query=branch%3Abeta) | [![ci](https://github.com/sqlmath/sqlmath/actions/workflows/ci.yml/badge.svg?branch=alpha)](https://github.com/sqlmath/sqlmath/actions?query=branch%3Aalpha) |
8
8
  | Coverage | [![coverage](https://sqlmath.github.io/sqlmath/branch-master/.artifact/coverage/coverage_badge.svg)](https://sqlmath.github.io/sqlmath/branch-master/.artifact/coverage/index.html) | [![coverage](https://sqlmath.github.io/sqlmath/branch-beta/.artifact/coverage/coverage_badge.svg)](https://sqlmath.github.io/sqlmath/branch-beta/.artifact/coverage/index.html) | [![coverage](https://sqlmath.github.io/sqlmath/branch-alpha/.artifact/coverage/coverage_badge.svg)](https://sqlmath.github.io/sqlmath/branch-alpha/.artifact/coverage/index.html) |
@@ -122,11 +122,11 @@ PORT=8080 sh jslint_ci.sh shHttpFileServer
122
122
  ```shell
123
123
  python -m build
124
124
  #
125
- twine upload --repository testpypi dist/sqlmath-2023.10.25*
126
- py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==2023.10.25
125
+ twine upload --repository testpypi dist/sqlmath-2023.11.22*
126
+ py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==2023.11.22
127
127
  #
128
- twine upload dist/sqlmath-2023.10.25*
129
- pip install sqlmath==2023.10.25
128
+ twine upload dist/sqlmath-2023.11.22*
129
+ pip install sqlmath==2023.11.22
130
130
  ```
131
131
 
132
132
 
package/jslint.mjs CHANGED
@@ -163,7 +163,7 @@ let jslint_charset_ascii = (
163
163
  + "@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_"
164
164
  + "`abcdefghijklmnopqrstuvwxyz{|}~\u007f"
165
165
  );
166
- let jslint_edition = "v2023.10.24";
166
+ let jslint_edition = "v2023.11.1-beta";
167
167
  let jslint_export; // The jslint object to be exported.
168
168
  let jslint_fudge = 1; // Fudge starting line and starting
169
169
  // ... column to 1.
package/package.json CHANGED
@@ -38,5 +38,5 @@
38
38
  },
39
39
  "shCiArtifactUpload": 1,
40
40
  "shCiPublishNpm": 1,
41
- "version": "2023.10.25"
41
+ "version": "2023.11.22"
42
42
  }
package/sqlmath.mjs CHANGED
@@ -104,7 +104,7 @@ let {
104
104
  let sqlMessageDict = {}; // dict of web-worker-callbacks
105
105
  let sqlMessageId = 0;
106
106
  let sqlWorker;
107
- let version = "v2023.10.25";
107
+ let version = "v2023.11.22";
108
108
 
109
109
  function assertInt64(val) {
110
110
  // This function will assert <val> is within range of c99-signed-long-long.