From ce1eccc46015549ca3d2b628d514210fb75deb93 Mon Sep 17 00:00:00 2001 From: Steven Petryk Date: Wed, 18 Jan 2023 22:42:08 -0800 Subject: [PATCH] v0.13.0 --- CHANGELOG.md | 4 ++++ package.json | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c33d300e..b643b78a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +# 0.13.0 + +- `vec.Matrix` is now a 2x3 matrix instead of a 3x3 matrix. This is a potentially breaking change from a TypeScript perspective, but shouldn't have any real impact on behavior—other than making things faster! Thank you to @sritchie for identifying this opportunity and [improving a lot of the code in `vec`](https://github.com/stevenpetryk/mafs/pull/92). + # 0.12.0 - Mafs has had a mostly-internal update to correct the TypeScript types that were being exported. This is unlikely to affect existing code, unless you were importing `Vector2` or `Matrix` from Mafs. The correct way to import those types is now `import { vec } from 'mafs'` and then use `vec.Vector2` and `vec.Matrix`. diff --git a/package.json b/package.json index 3d0e9680..c12d605c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mafs", - "version": "0.13.0-rc.0", + "version": "0.13.0", "license": "MIT", "author": "Steven Petryk (https://stevenpetryk.com)", "homepage": "https://mafs.dev",