From 2d45bc0c69a66d6cddfb0116eef821196a14c961 Mon Sep 17 00:00:00 2001 From: sam Date: Tue, 10 Dec 2024 16:08:08 -0800 Subject: [PATCH] version 0.7.3 --- Changelog.md | 5 +++++ jsr.json | 2 +- package.json | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Changelog.md b/Changelog.md index 258ef75..81ea782 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. +## [0.7.3] - 2024-12-11 + +### Changed +- Fixed the error type to make it more generic and consistent with TS: https://github.com/might-fail/ts/issues/20 + ## [0.7.2] - 2024-11-30 ### Changed diff --git a/jsr.json b/jsr.json index f4e0e3a..0d1d000 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@might/fail", - "version": "0.7.2", + "version": "0.7.3", "exports": { ".": "./src/index.ts", "./go": "./src/go/index.ts" diff --git a/package.json b/package.json index 8896db2..1ad1766 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "might-fail", - "version": "0.7.2", + "version": "0.7.3", "description": "A better way to handle errors in JavaScript and TypeScript. Handle async and sync errors without `try` and `catch` blocks.", "main": "dist/cjs/index.js", "module": "dist/index.js",