diff --git a/.changeset/fair-moons-yawn.md b/.changeset/fair-moons-yawn.md deleted file mode 100644 index 8452c84..0000000 --- a/.changeset/fair-moons-yawn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"any-ts": minor ---- - -infra: library is written in ESM now. still targeting both CJS and ESM diff --git a/.changeset/giant-waves-worry.md b/.changeset/giant-waves-worry.md deleted file mode 100644 index 0df7243..0000000 --- a/.changeset/giant-waves-worry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"any-ts": patch ---- - -fix typechecking issue in `Lens.tree` diff --git a/.changeset/honest-melons-report.md b/.changeset/honest-melons-report.md deleted file mode 100644 index 67c309c..0000000 --- a/.changeset/honest-melons-report.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"any-ts": patch ---- - -adds type-checking to release pipeline to make it harder to publish bad code diff --git a/.changeset/hungry-knives-bathe.md b/.changeset/hungry-knives-bathe.md deleted file mode 100644 index d0da1b6..0000000 --- a/.changeset/hungry-knives-bathe.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"any-ts": minor ---- - -feat: merges traversable and traversal into Tree diff --git a/.changeset/new-eagles-applaud.md b/.changeset/new-eagles-applaud.md deleted file mode 100644 index 58b9fa7..0000000 --- a/.changeset/new-eagles-applaud.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"any-ts": minor ---- - -fixes broken version script diff --git a/.changeset/small-suits-smash.md b/.changeset/small-suits-smash.md deleted file mode 100644 index 6e955c8..0000000 --- a/.changeset/small-suits-smash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"any-ts": patch ---- - -fix: uses import.meta.url instead of \_\_dirname diff --git a/.changeset/sour-toes-tickle.md b/.changeset/sour-toes-tickle.md deleted file mode 100644 index 62f8981..0000000 --- a/.changeset/sour-toes-tickle.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"any-ts": patch ---- - -tweaks a few aliases to prevent compiler from appending `$1`, `$2` to the end of output types diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c81da7..138034d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # any-ts +## 0.42.0 + +### Minor Changes + +- 66e5d7a: infra: library is written in ESM now. still targeting both CJS and ESM +- a25502d: feat: merges traversable and traversal into Tree +- 39fefd8: fixes broken version script + +### Patch Changes + +- 4facde2: fix typechecking issue in `Lens.tree` +- dd6dc3a: adds type-checking to release pipeline to make it harder to publish bad code +- a780e80: fix: uses import.meta.url instead of \_\_dirname +- 46b499e: tweaks a few aliases to prevent compiler from appending `$1`, `$2` to the end of output types + ## 0.41.4 ### Patch Changes diff --git a/package.json b/package.json index 6fc355e..3577333 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "any-ts", "private": false, - "version": "0.41.4", + "version": "0.42.0", "type": "module", "author": { "name": "Andrew Jarrett", diff --git a/src/version.ts b/src/version.ts index e664310..8ee9aec 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,2 +1,2 @@ -export const ANY_TS_VERSION = "0.41.4" as const +export const ANY_TS_VERSION = "0.42.0" as const export type ANY_TS_VERSION = typeof ANY_TS_VERSION \ No newline at end of file