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 +3 -0
- package/README.md +5 -5
- package/package.json +1 -1
- package/sqlmath.mjs +1 -1
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.
|
|
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 | [](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) |
|
|
@@ -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.
|
|
123
|
-
py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==2023.9.
|
|
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.
|
|
126
|
-
pip install sqlmath==2023.9.
|
|
125
|
+
twine upload dist/sqlmath-2023.9.25*
|
|
126
|
+
pip install sqlmath==2023.9.25
|
|
127
127
|
```
|
package/package.json
CHANGED