sqlmath 2023.11.22 → 2023.12.20
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 +4 -0
- package/README.md +5 -5
- package/package.json +1 -1
- package/sqlmath.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@
|
|
|
4
4
|
- sqlmath - Add sqlite-extension for lightgbm.
|
|
5
5
|
- none
|
|
6
6
|
|
|
7
|
+
# v2023.12.20
|
|
8
|
+
- chart - Improve ergonomics with import tsv.
|
|
9
|
+
- betadog - bugfix - Remove over-complicated prm ttt from table y_historical.
|
|
10
|
+
|
|
7
11
|
# v2023.11.22
|
|
8
12
|
- sqlmath - Add sql-functions normalizewithsquared(), squaredwithsign().
|
|
9
13
|
|
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.12.20)](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.12.20*
|
|
126
|
+
py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==2023.12.20
|
|
127
127
|
#
|
|
128
|
-
twine upload dist/sqlmath-2023.
|
|
129
|
-
pip install sqlmath==2023.
|
|
128
|
+
twine upload dist/sqlmath-2023.12.20*
|
|
129
|
+
pip install sqlmath==2023.12.20
|
|
130
130
|
```
|
|
131
131
|
|
|
132
132
|
|
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.12.20";
|
|
108
108
|
|
|
109
109
|
function assertInt64(val) {
|
|
110
110
|
// This function will assert <val> is within range of c99-signed-long-long.
|