Skip to content

Commit

Permalink
[REL] Release 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
czottmann committed May 7, 2024
1 parent c9d2067 commit 34c1b06
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release history

## 2.1.0, 2024-xx-xx
## 2.1.0, 2024-05-07

- Adds new output formatter, Markdown Code Blocks, which outputs log entries as
code blocks in a Markdown file. This is useful for log files that are meant to
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ As such, it's also useful for letting your plugin's users help you debug your pl
- Logs can be written in several formats:
- [NDJSON](https://github.com/ndjson/ndjson-spec), a plain text format that can be read by humans and machines alike. Every line in the file is a JSON object. Think CSV, but with JSON.
- Markdown file containing a table.
- Markdown file containing code blocks.


## Example output
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "logstravaganza",
"name": "Logstravaganza",
"version": "2.0.1",
"version": "2.1.0",
"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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "logstravaganza",
"version": "2.0.1",
"description": "A simple proxy for `console.*()` calls which copies log messages and uncaught exceptions to a note.",
"version": "2.1.0",
"description": "A simple proxy for `console.*()` calls which copies log messages and uncaught exceptions to a note or file.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
Expand Down
4 changes: 2 additions & 2 deletions src/plugin-info.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"pluginVersion": "2.0.1",
"pluginReleasedAt": "2024-03-25T18:46:55+0100"
"pluginVersion": "2.1.0",
"pluginReleasedAt": "2024-05-07T12:22:52+0200"
}
4 changes: 2 additions & 2 deletions src/plugin-info.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* File will be overwritten by bin/release.sh! */
export const PLUGIN_INFO = {
"pluginVersion": "2.0.1",
"pluginReleasedAt": "2024-03-25T18:46:55+0100"
"pluginVersion": "2.1.0",
"pluginReleasedAt": "2024-05-07T12:22:52+0200"
}
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@
"1.1.1": "1.2.0",
"1.2.0": "1.2.0",
"2.0.0": "1.4.0",
"2.0.1": "1.4.0"
"2.0.1": "1.4.0",
"2.1.0": "1.4.0"
}

0 comments on commit 34c1b06

Please sign in to comment.