sqlmath 2023.9.19 → 2023.9.25

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
@@ -5,6 +5,9 @@
5
5
  - sqlmath - Optimize cosfit-calculation of amplitude-prm WinCosfit.caa to one-step instead of nnn-steps.
6
6
  - none
7
7
 
8
+ # v2023.9.25
9
+ - sqlmath - Add sql-functions coinflip_extract(), normalizewithsqrt(), win_coinflip2().
10
+
8
11
  # v2023.9.19
9
12
  - ci - Update ci-workflow publish to auto-publish pypi-package.
10
13
  - ci - Add ci-workflow publish_pypi_test.
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
  # Status
5
- | Branch | [master<br>(v2023.9.19)](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.9.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) |
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) |
@@ -119,9 +119,9 @@ PORT=8080 sh jslint_ci.sh shHttpFileServer
119
119
  ```shell
120
120
  python -m build
121
121
  #
122
- twine upload --repository testpypi dist/sqlmath-2023.9.19*
123
- py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==2023.9.19
122
+ twine upload --repository testpypi dist/sqlmath-2023.9.25*
123
+ py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==2023.9.25
124
124
  #
125
- twine upload dist/sqlmath-2023.9.19*
126
- pip install sqlmath==2023.9.19
125
+ twine upload dist/sqlmath-2023.9.25*
126
+ pip install sqlmath==2023.9.25
127
127
  ```
package/package.json CHANGED
@@ -38,5 +38,5 @@
38
38
  },
39
39
  "shCiArtifactUpload": 1,
40
40
  "shCiPublishNpm": 1,
41
- "version": "2023.9.19"
41
+ "version": "2023.9.25"
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.9.19";
100
+ let version = "v2023.9.25";
101
101
 
102
102
  function assertJsonEqual(aa, bb, message) {
103
103