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 +3 -0
- package/README.md +5 -5
- package/jslint.mjs +1 -1
- package/package.json +1 -1
- package/sqlmath.mjs +1 -1
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.
|
|
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 | [](https://github.com/sqlmath/sqlmath/actions?query=branch%3Amaster) | [](https://github.com/sqlmath/sqlmath/actions?query=branch%3Abeta) | [](https://github.com/sqlmath/sqlmath/actions?query=branch%3Aalpha) |
|
|
8
8
|
| Coverage | [](https://sqlmath.github.io/sqlmath/branch-master/.artifact/coverage/index.html) | [](https://sqlmath.github.io/sqlmath/branch-beta/.artifact/coverage/index.html) | [](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.
|
|
126
|
-
py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==2023.
|
|
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.
|
|
129
|
-
pip install sqlmath==2023.
|
|
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.
|
|
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
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.
|
|
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.
|