From f30903db11dba211055c07e328a94740df6abdd4 Mon Sep 17 00:00:00 2001 From: Steven Petryk Date: Thu, 5 Jan 2023 23:02:25 -0800 Subject: [PATCH] v0.9.0 --- CHANGELOG.md | 12 ++++++++++++ package.json | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 449387b8..4612ef9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +# 0.9.0 + +- Mafs now ships with the Computer Modern typeface, and makes it easy to use in your own project. It just requires a change to your CSS: + + ```diff + -@import "mafs/build/index.css"; + +@import "mafs/core.css"; + +@import "mafs/font.css"; /* optional */ + ``` + + `"mafs/build/index.css"` is still included in the package to avoid breaking things. It will be removed in a future release. + # 0.8.2 - Ensures that `React.PropsWithChildren` is used for components that accept children, for React 18 compatibility reasons. diff --git a/package.json b/package.json index d3eaa64c..a4e1f492 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mafs", - "version": "0.8.2", + "version": "0.9.0", "license": "MIT", "author": "Steven Petryk (https://stevenpetryk.com)", "homepage": "https://mafs.dev",