Skip to content

Commit

Permalink
[REL] Release 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
czottmann committed Mar 25, 2024
1 parent 64f2958 commit 41038f4
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,12 @@
# Release history

## 2.0.1, 2024-03-25

- Adds countermeasures against "max call stack size exceeded" errors caused
by several internal Obsidian objects (app, vault, workspace, (abstract) files,
folders)


## 2.0.0, 2024-03-25

This update brings a full rewrite of the plugin: Not only is it more performant
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
@@ -1,7 +1,7 @@
{
"id": "logstravaganza",
"name": "Logstravaganza",
"version": "2.0.0",
"version": "2.0.1",
"minAppVersion": "1.4.0",
"description": "A simple proxy for `console.*()` calls which copies log messages and uncaught exceptions to a file.",
"author": "Carlo Zottmann",
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "logstravaganza",
"version": "2.0.0",
"version": "2.0.1",
"description": "A simple proxy for `console.*()` calls which copies log messages and uncaught exceptions to a note.",
"main": "main.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/plugin-info.json
@@ -1,4 +1,4 @@
{
"pluginVersion": "2.0.0",
"pluginReleasedAt": "2024-03-25T14:09:37+0100"
"pluginVersion": "2.0.1",
"pluginReleasedAt": "2024-03-25T18:46:55+0100"
}
4 changes: 2 additions & 2 deletions src/plugin-info.ts
@@ -1,5 +1,5 @@
/* File will be overwritten by bin/release.sh! */
export const PLUGIN_INFO = {
"pluginVersion": "2.0.0",
"pluginReleasedAt": "2024-03-25T14:09:37+0100"
"pluginVersion": "2.0.1",
"pluginReleasedAt": "2024-03-25T18:46:55+0100"
}
3 changes: 2 additions & 1 deletion versions.json
Expand Up @@ -9,5 +9,6 @@
"1.1.0": "1.2.0",
"1.1.1": "1.2.0",
"1.2.0": "1.2.0",
"2.0.0": "1.4.0"
"2.0.0": "1.4.0",
"2.0.1": "1.4.0"
}

0 comments on commit 41038f4

Please sign in to comment.