Skip to content

chore(main): release 3.0.0 #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 23 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog

## [3.0.0](https://github.com/mljs/regression-polynomial/compare/v2.2.0...v3.0.0) (2023-10-02)


### ⚠ BREAKING CHANGES

* use named exports to ease transition to TypeScript
* migrate to TypeScript ([#8](https://github.com/mljs/regression-polynomial/issues/8))

### Features

* allow users to pass `interceptAtZero` parameter ([5f9aa0e](https://github.com/mljs/regression-polynomial/commit/5f9aa0e5a7569b7933f3313c5073c64d1d647a34))


### Bug Fixes

* determine the degree from max power, not power length ([5f9aa0e](https://github.com/mljs/regression-polynomial/commit/5f9aa0e5a7569b7933f3313c5073c64d1d647a34))


### Code Refactoring

* migrate to TypeScript ([#8](https://github.com/mljs/regression-polynomial/issues/8)) ([5f9aa0e](https://github.com/mljs/regression-polynomial/commit/5f9aa0e5a7569b7933f3313c5073c64d1d647a34))
* use named exports to ease transition to TypeScript ([5f9aa0e](https://github.com/mljs/regression-polynomial/commit/5f9aa0e5a7569b7933f3313c5073c64d1d647a34))

## [2.2.0](https://github.com/mljs/regression-polynomial/compare/v2.1.0...v2.2.0) (2021-06-10)


Expand Down Expand Up @@ -52,6 +75,3 @@
### Features

* implement polynomial regression ([ed6a198](https://github.com/mljs/regression-polynomial/commit/ed6a198))



2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ml-regression-polynomial",
"version": "2.2.0",
"version": "3.0.0",
"description": "Polynomial Regression",
"types": "./lib/index.d.ts",
"main": "./lib/index.js",
Expand Down