Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.2.1"
".": "0.2.2"
}
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ All notable changes to the Errors and Echoes module will be documented in this f
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.2](https://github.com/rayners/fvtt-errors-and-echoes/compare/v0.2.1...v0.2.2) (2025-09-30)


### Bug Fixes

* apply Seasons & Stars release-please lessons to prevent tag/build conflicts ([ae96a78](https://github.com/rayners/fvtt-errors-and-echoes/commit/ae96a78e8c8578f7297c066a8cd77b0bfbe212c6))
* format code with prettier ([9c348ea](https://github.com/rayners/fvtt-errors-and-echoes/commit/9c348ea1f594dc3a19a24489f156fd8f16654fa5))
* modernize release-please configuration and clean up release workflow ([5f03fb8](https://github.com/rayners/fvtt-errors-and-echoes/commit/5f03fb8a97024c692fa314ac9288ed929fe0655f))
* update package-lock.json for foundry-dev-tools v1.2.0 ([864e0ce](https://github.com/rayners/fvtt-errors-and-echoes/commit/864e0ce81f6e328f5c60e6c1be3da7dc4d88f18d))

## [0.2.1] - 2025-06-08

### Fixed
Expand Down
18 changes: 14 additions & 4 deletions module.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "errors-and-echoes",
"title": "Errors and Echoes",
"description": "Privacy-first anonymous error reporting system for FoundryVTT modules. Helps module authors identify and fix issues while respecting user privacy with configurable data collection levels and full transparency.",
"version": "0.2.1",
"version": "0.2.2",
"authors": [
{
"name": "David Raynes",
Expand All @@ -15,8 +15,12 @@
"verified": "13.0.0",
"maximum": "13.999.999"
},
"esmodules": ["module.js"],
"styles": ["styles/errors-and-echoes.css"],
"esmodules": [
"module.js"
],
"styles": [
"styles/errors-and-echoes.css"
],
"languages": [
{
"lang": "en",
Expand All @@ -32,7 +36,13 @@
"readme": "https://github.com/rayners/fvtt-errors-and-echoes/blob/main/README.md",
"documentation": "https://docs.rayners.dev/errors-and-echoes",
"license": "MIT",
"keywords": ["error-reporting", "debugging", "module-development", "privacy", "anonymous"],
"keywords": [
"error-reporting",
"debugging",
"module-development",
"privacy",
"anonymous"
],
"funding": [
{
"type": "patreon",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fvtt-errors-and-echoes",
"version": "0.2.1",
"version": "0.2.2",
"description": "Anonymous error reporting for Foundry VTT modules",
"main": "dist/module.js",
"type": "module",
Expand Down