sqlmath 2023.5.25 → 2023.6.26

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
@@ -3,7 +3,21 @@
3
3
  # Todo
4
4
  - none
5
5
 
6
+ # v2023.6.26
7
+ - sqlmath - fix broken interpolation in sql-function quantile().
8
+ - sqlmath - Add sql-function win_quantile1(), win_quantile2().
9
+ - sqlmath - Update sql-function win_slr2() to be vectorized.
10
+ - sqlmath - Add sql-function win_ema2().
11
+ - betadog - Add feature xema_xxx into ml model.
12
+ - sqlmath - Add sql-function win_slr().
13
+ - sqlmath - Add sql-function vec_win_slr_updatelast().
14
+ - sqlmath - Add sql-function vec_win_slr().
15
+ - sqlmath - Revamp struct Vector99.
16
+ - sqlmath - Add sql-function vec_concat().
17
+ - sqlmath - Add sql-function castrealornull().
18
+
6
19
  # v2023.5.25
20
+ - ci - auto-update python version
7
21
  - jslint - Add grammar for "export async function ...".
8
22
  - sqlite - Remove hacky sqlite-extension-function.
9
23
  - python - Migrate python-driver from pysqlite3 to cpython.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
  # Status
5
- | Branch | [master<br>(v2023.5.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.6.26)](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) |
@@ -117,7 +117,12 @@ PORT=8080 sh jslint_ci.sh shHttpFileServer
117
117
 
118
118
  <br><br>
119
119
  ### python pypi publish
120
- - $ `twine upload --repository testpypi dist/sqlmath-0.0.5*`
121
- - $ `py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==0.0.5`
122
- - $ `twine upload dist/sqlmath-0.0.5*`
123
- - $ `pip install sqlmath==0.0.5`
120
+ ```shell
121
+ python -m build
122
+ #
123
+ twine upload --repository testpypi dist/sqlmath-2023.6.26*
124
+ py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==2023.6.26
125
+ #
126
+ twine upload dist/sqlmath-2023.6.26*
127
+ pip install sqlmath==2023.6.26
128
+ ```
package/package.json CHANGED
@@ -38,5 +38,5 @@
38
38
  },
39
39
  "shCiArtifactUpload": 1,
40
40
  "shCiNpmPublish": 1,
41
- "version": "2023.5.25"
41
+ "version": "2023.6.26"
42
42
  }
package/sqlmath.mjs CHANGED
@@ -97,7 +97,7 @@ let {
97
97
  let sqlMessageDict = {}; // dict of web-worker-callbacks
98
98
  let sqlMessageId = 0;
99
99
  let sqlWorker;
100
- let version = "v2023.5.25";
100
+ let version = "v2023.6.26";
101
101
 
102
102
  function assertJsonEqual(aa, bb, message) {
103
103