From 976f7aef572f17b67b4fd966f9615259888d380d Mon Sep 17 00:00:00 2001 From: joe-bell Date: Thu, 25 Feb 2021 12:36:00 +0200 Subject: [PATCH] v1.3.0 --- CHANGELOG.md | 8 +++++++- README.md | 2 +- package.json | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f66583f..ac86da9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,13 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.3.0](https://github.com/joe-bell/next-google-fonts/compare/v1.2.1...v1.3.0) (2020-02-25) + +### Features + +- add named export of `GoogleFonts` ([f9e17b5](https://github.com/joe-bell/next-google-fonts/commit/f9e17b52d2cfd66ee3be5a1a1f77810b0d1fd77e)) + ## [1.2.1](https://github.com/joe-bell/next-google-fonts/compare/v1.2.0...v1.2.1) (2020-07-08) ### Reverts - remove react-google-fonts until tested ([f9096dd](https://github.com/joe-bell/next-google-fonts/commit/f9096dd68d11aa10a473e007ae244b766d0f6c63)) -# [1.2.0](https://github.com/joe-bell/next-google-fonts/compare/v1.1.0...v1.2.0) (2020-07-08) +## [1.2.0](https://github.com/joe-bell/next-google-fonts/compare/v1.1.0...v1.2.0) (2020-07-08) ### Features diff --git a/README.md b/README.md index 3dbe692..3309c0c 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ See [joebell.co.uk](https://joebell.co.uk) for a working example. // components/head.js import * as React from "react"; import NextHead from "next/head"; - import GoogleFonts from "next-google-fonts"; + import { GoogleFonts } from "next-google-fonts"; export const Head = ({ children, title }) => ( diff --git a/package.json b/package.json index 7bed66f..dd93634 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "next-google-fonts", - "version": "1.2.1", + "version": "1.3.0", "description": "Load Google Fonts Asynchronously in Next.js", "source": "src/index.tsx", "main": "dist/index.js",