release: v2.0.3

This commit is contained in:
Revone 2025-03-01 18:53:15 +13:00
parent 50e8d9f315
commit 69d78fdc87
3 changed files with 4 additions and 4 deletions

View file

@ -8,7 +8,7 @@ All notable changes to this project will be documented in this file.
- [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
- [`auto-changelog`](https://github.com/CookPete/auto-changelog)
## [v2.0.2](https://github.com/zrwusa/data-structure-typed/compare/v1.51.5...main) (upcoming)
## [v2.0.3](https://github.com/zrwusa/data-structure-typed/compare/v1.51.5...main) (upcoming)
### Changes

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "data-structure-typed",
"version": "2.0.2",
"version": "2.0.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "data-structure-typed",
"version": "2.0.2",
"version": "2.0.3",
"license": "MIT",
"devDependencies": {
"@eslint/compat": "^1.2.2",

View file

@ -24,7 +24,7 @@ import { LinearBase } from '../base/linear-base';
* let maxSum = 0;
* let currentSum = 0;
*
* nums.forEach((num, i) => {
* nums.forEach((num) => {
* queue.push(num);
* currentSum += num;
*