diff --git a/.changeset/add-cli-remove-trailing-period.md b/.changeset/add-cli-remove-trailing-period.md deleted file mode 100644 index ec60d48..0000000 --- a/.changeset/add-cli-remove-trailing-period.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@srtkit/cli": patch ---- - -Add `--remove-trailing-period` flag to clean command - -- Add new CLI option `--remove-trailing-period` to remove trailing periods (`。` or `.`) at the end of cues diff --git a/.changeset/add-remove-trailing-period.md b/.changeset/add-remove-trailing-period.md deleted file mode 100644 index 38b02ea..0000000 --- a/.changeset/add-remove-trailing-period.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@srtkit/core": patch ---- - -Fix `removeTrailingPeriod` regex to handle trailing whitespace - -- Fix regex pattern from `/[。.]$/` to `/[。.]\s*$/` to correctly remove trailing periods followed by whitespace diff --git a/.changeset/max-is-qaq.md b/.changeset/max-is-qaq.md deleted file mode 100644 index 1bb38c8..0000000 --- a/.changeset/max-is-qaq.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@srtkit/cli": patch ---- - -sync markdown content with code diff --git a/.changeset/max-is-qwq.md b/.changeset/max-is-qwq.md deleted file mode 100644 index 4e0f755..0000000 --- a/.changeset/max-is-qwq.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@srtkit/core": patch ---- - -update `cleanBetween` function signature diff --git a/.changeset/petite-friends-kick.md b/.changeset/petite-friends-kick.md deleted file mode 100644 index e7e4052..0000000 --- a/.changeset/petite-friends-kick.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@srtkit/core": patch ---- - -remove unused exports for cleaner diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 45446a7..cd5dc47 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,18 @@ # @srtkit/cli +## 0.1.3 + +### Patch Changes + +- [`0b51242`](https://github.com/maxchang3/srtkit/commit/0b51242b19d36391feebe2fc2c14854f5ad62e86) Thanks [@maxchang3](https://github.com/maxchang3)! - Add `--remove-trailing-period` flag to clean command + + - Add new CLI option `--remove-trailing-period` to remove trailing periods (`。` or `.`) at the end of cues + +- [`df4efc6`](https://github.com/maxchang3/srtkit/commit/df4efc61eebbe6b76c87552b402594f50c93a0d8) Thanks [@maxchang3](https://github.com/maxchang3)! - sync markdown content with code + +- Updated dependencies [[`9530413`](https://github.com/maxchang3/srtkit/commit/953041308d4fc4f615d65b69b4135d650cba9a58), [`717d9db`](https://github.com/maxchang3/srtkit/commit/717d9dbeda32d3700f839118fc4658e50084df91), [`b6409dc`](https://github.com/maxchang3/srtkit/commit/b6409dc87b75d9aae8be2c7ec95e4e661d72a509)]: + - @srtkit/core@0.0.5 + ## 0.1.2 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 31ac5e7..dc6279d 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "@srtkit/cli", "type": "module", - "version": "0.1.2", + "version": "0.1.3", "description": "Command line interface for SRTKit - utilities for processing SRT subtitle files", "author": "Max Chang", "license": "MIT", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index a392985..341741b 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,17 @@ # @srtkit/core +## 0.0.5 + +### Patch Changes + +- [`9530413`](https://github.com/maxchang3/srtkit/commit/953041308d4fc4f615d65b69b4135d650cba9a58) Thanks [@maxchang3](https://github.com/maxchang3)! - Fix `removeTrailingPeriod` regex to handle trailing whitespace + + - Fix regex pattern from `/[。.]$/` to `/[。.]\s*$/` to correctly remove trailing periods followed by whitespace + +- [`717d9db`](https://github.com/maxchang3/srtkit/commit/717d9dbeda32d3700f839118fc4658e50084df91) Thanks [@maxchang3](https://github.com/maxchang3)! - update `cleanBetween` function signature + +- [`b6409dc`](https://github.com/maxchang3/srtkit/commit/b6409dc87b75d9aae8be2c7ec95e4e661d72a509) Thanks [@maxchang3](https://github.com/maxchang3)! - remove unused exports for cleaner + ## 0.0.4 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index f236134..d5c1d56 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@srtkit/core", "type": "module", - "version": "0.0.4", + "version": "0.0.5", "description": "A set of utilities for processing and manipulating SRT (SubRip Text) subtitle files.", "author": "Max Chang", "license": "MIT",