Skip to content
Merged
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,4 @@ tmp/

### user-specific files
artifacts/
benchmark/results/
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to this project are documented in this file.

## [1.3.0] - 2026-01-09
### Deprecated
- Deprecated public APIs in internal modules (`str/core`, `str/extra`, and `str/tokenize`) in
preparation for the upcoming 2.0.0 release. These functions have `@deprecated` annotations
and will be consolidated under the unified `str` module in 2.0.0. The public convenience
module `str.gleam` itself remains the recommended entry point and is not deprecated.

### Notes
- You may see deprecation warnings when running tests or building the project; these
warnings are intentional and indicate that the APIs have been marked for migration
to the unified `str` module in the next major release.

## [1.2.3] - 2026-01-08
### Changed
- Replaced `escape_html` implementation with `houdini.escape` for faster,
Expand Down
Loading