diff --git a/CHANGELOG.md b/CHANGELOG.md index 776ef1b..38ad9b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,11 @@ ## [Unreleased] +## [0.10.2] - 2024-10-12 + +- Added `SourceOf` type. +- Deprecated `Source` type. + ## [0.10.1] - 2024-10-04 - Change exports order in package.json. diff --git a/jsr.json b/jsr.json index 7bf02fc..feb1b50 100644 --- a/jsr.json +++ b/jsr.json @@ -1,7 +1,7 @@ { "$schema": "https://jsr.io/schema/config-file.v1.json", "name": "@uzmoi/parsea", - "version": "0.10.1", + "version": "0.10.2", "exports": { ".": "./src/index.ts", "./internal": "./src/internal.ts" diff --git a/package-lock.json b/package-lock.json index 4d091a3..3126614 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "parsea", - "version": "0.10.1", + "version": "0.10.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "parsea", - "version": "0.10.1", + "version": "0.10.2", "license": "MIT", "dependencies": { "emnorst": "^1.0.0-next.2" diff --git a/package.json b/package.json index 0987a67..6773608 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "parsea", - "version": "0.10.1", + "version": "0.10.2", "description": "parser combinator library for parsing ArrayLike.", "type": "module", "main": "dist/index.cjs",