Skip to content

Commit

Permalink
Bump version to 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
RDIL committed Feb 9, 2022
1 parent 109ecc4 commit 722f7b5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## v3.0.0 - 2/9/2022

Breaking changes:

- Docusaurus v2.0.0-beta.15 or newer is now required.

Bug fixes:

- Fix issue with multiple slashes in the URL (fixed by @essential-randomness in #31).

## v2.1.0 - 1/6/2022

Features:
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": "docusaurus-plugin-remote-content",
"version": "2.1.0",
"version": "3.0.0",
"description": "A Docusaurus v2 plugin that allows you to fetch content from remote sources!",
"main": "build/index.js",
"repository": "https://github.com/rdilweb/docusaurus-plugin-remote-content.git",
Expand Down
4 changes: 3 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,9 @@ export default async function pluginRemoteContent(
async loadContent(): Promise<void> {
if (!check.hasDownloaded && !noRuntimeDownloads) {
// we have not downloaded, and we want runtime downloads
throw new Error("[plugin-remote-content] Illegal state reached - see https://github.com/rdilweb/docusaurus-plugin-remote-content/issues/25#issuecomment-1034042103 for details!")
throw new Error(
"[plugin-remote-content] Illegal state reached - see https://github.com/rdilweb/docusaurus-plugin-remote-content/issues/25#issuecomment-1034042103 for details!"
)
}
},

Expand Down

0 comments on commit 722f7b5

Please sign in to comment.