Skip to content

Commit ab6d0f3

Browse files
committed
# v2026.7.30
- jslint-ecma - Add ES2015-feature for..of. - jslint - Change scope from scope_function to scope_block: - const-declaration - let-declaration - function-declaration - jslint - Expand built-in-globals for browser, ecma, and node - auto-generated from online-sources. - jslint-ci - Add automated ci for shellcheck to lint shell-scripts. - jslint-regression - Cleanup indent for multiline-method-chaining. - jslint-regression - Fix long-running regression where 'let x = x;' doesn't warn about temporal-dead-zone.
1 parent 0228d8f commit ab6d0f3

10 files changed

Lines changed: 176 additions & 168 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
- sqlite - Add similar error-handling from builtin-sql-function PERCENTILE() into custom-sql-function QUANTILE().
88
- none
99

10-
# v2026.7.1-beta
10+
# v2026.7.30
1111
- jslint-ecma - Add ES2015-feature for..of.
1212
- jslint - Change scope from scope_function to scope_block:
1313
- const-declaration

PKG-INFO

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: sqlmath
3-
Version: 2026.7.1
3+
Version: 2026.7.30
44
Summary: sqlite for data-science
55
Author: Kai Zhu
66
Requires-Python: >=3.10
@@ -34,7 +34,7 @@ Description-Content-Type: text/markdown
3434

3535
# Status
3636

37-
| Branch | [master<br>(v2026.6.30)](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) |
37+
| Branch | [master<br>(v2026.7.30)](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) |
3838
|--:|:--:|:--:|:--:|
3939
| 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) |
4040
| 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) |
@@ -423,7 +423,7 @@ Full notebook with fraud detection, intraday trading signals, and model persiste
423423
**Kaggle Environment:**
424424
- Linux x64, Python 3.12, Node.js 24
425425
- Datasets: [Credit Card Fraud](https://www.kaggle.com/datasets/mlg-ulb/creditcardfraud) (284K transactions), SPY intraday OHLCV
426-
- sqlmath installs via `pip install sqlmath==2026.7.1`
426+
- sqlmath installs via `pip install sqlmath==2026.7.30`
427427

428428

429429
<br><br>
@@ -668,11 +668,11 @@ PORT=8080 sh jslint_ci.sh shHttpFileServer
668668
```shell
669669
python -m build
670670
#
671-
twine upload --repository testpypi dist/sqlmath-2026.7.1*
672-
py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==2026.7.1
671+
twine upload --repository testpypi dist/sqlmath-2026.7.30*
672+
py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==2026.7.30
673673
#
674-
twine upload dist/sqlmath-2026.7.1*
675-
pip install sqlmath==2026.7.1
674+
twine upload dist/sqlmath-2026.7.30*
675+
pip install sqlmath==2026.7.30
676676
```
677677

678678

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
# Status
1111

12-
| Branch | [master<br>(v2026.6.30)](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) |
12+
| Branch | [master<br>(v2026.7.30)](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) |
1313
|--:|:--:|:--:|:--:|
1414
| 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) |
1515
| 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) |
@@ -398,7 +398,7 @@ Full notebook with fraud detection, intraday trading signals, and model persiste
398398
**Kaggle Environment:**
399399
- Linux x64, Python 3.12, Node.js 24
400400
- Datasets: [Credit Card Fraud](https://www.kaggle.com/datasets/mlg-ulb/creditcardfraud) (284K transactions), SPY intraday OHLCV
401-
- sqlmath installs via `pip install sqlmath==2026.7.1`
401+
- sqlmath installs via `pip install sqlmath==2026.7.30`
402402

403403

404404
<br><br>
@@ -643,11 +643,11 @@ PORT=8080 sh jslint_ci.sh shHttpFileServer
643643
```shell
644644
python -m build
645645
#
646-
twine upload --repository testpypi dist/sqlmath-2026.7.1*
647-
py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==2026.7.1
646+
twine upload --repository testpypi dist/sqlmath-2026.7.30*
647+
py -m pip install --index-url https://test.pypi.org/simple/ sqlmath==2026.7.30
648648
#
649-
twine upload dist/sqlmath-2026.7.1*
650-
pip install sqlmath==2026.7.1
649+
twine upload dist/sqlmath-2026.7.30*
650+
pip install sqlmath==2026.7.30
651651
```
652652

653653

0 commit comments

Comments
 (0)