Skip to content

Commit

Permalink
bump version, update changelog (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherChudzicki committed Jan 12, 2023
1 parent 558ffc2 commit 247d986
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
### MathBox Changelog

### 2.2.2 (unreleased)
### 2.3.0

- Changed how Mathbox imports ThreeJS. Previously, Mathbox (usually) imported from `three/src`. Now it consistently imports from `three`. This change should generally not affect users unless they were using `instanceof` checks.
- improved TS defintions for color, vector, matrix, and quaternion based properties. [#55](https://github.com/unconed/mathbox/pull/55)
- Changed how Mathbox imports ThreeJS. Previously, Mathbox (usually) imported from `three/src`. Now it consistently imports from `three`. This change should generally not affect users unless they were using `instanceof` checks. [#53](https://github.com/unconed/mathbox/pull/53)
- Added TS support for `area.rangeX`, `area.rangeY`, and other X/Y/Z/W-suffixed properties [#50](https://github.com/unconed/mathbox/pull/50)
- Fixed documentation generation [#51](https://github.com/unconed/mathbox/pull/51)
- Documented and added typings for `unbind()`. [#45](https://github.com/unconed/mathbox/pull/45)

### 2.2.1
- Add Typescript support for live properties and `bind`. [#43](https://github.com/unconed/mathbox/pull/43)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mathbox",
"version": "2.2.1",
"version": "2.3.0",
"description": "Presentation-quality WebGL math graphing",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/context.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class Context {
Util,
DOM: Util.VDOM,
};
this.Version = "2.2.1";
this.Version = "2.3.0";
}

//-------------------------------------------------------------------
Expand Down

0 comments on commit 247d986

Please sign in to comment.