Skip to content

Latest commit

 

History

History
126 lines (68 loc) · 3.38 KB

File metadata and controls

126 lines (68 loc) · 3.38 KB

CHANGELOG

Package changelog.

0.1.2 (2026-02-01)

Commits

Details
  • 6ce0275 - docs: remove incorrect hyphens from JSDoc returns annotations (by Philipp Burckhardt)
  • 380f888 - docs: fix TypeScript declaration examples in string packages (by Philipp Burckhardt)
  • 3d2f3c7 - docs: clean-up example code (by Philipp Burckhardt)
  • 2825b42 - docs: update related packages sections (#3898) (by stdlib-bot)

Contributors

A total of 1 person contributed to this release. Thank you to this contributor:

  • Philipp Burckhardt

0.1.1 (2024-07-26)

No changes reported for this release.

0.1.0 (2024-04-13)

Features

  • b665537 - resolve negative indices relative to the last string character
  • 04ee89f - add string/base/replace-after (#1363)

BREAKING CHANGES

  • b665537: resolve negative indices relative to the last string character

    • Previously, a negative index would resolve to 0. This commit changes that behavior to resolve relative to the last index. To preserve previous behavior, users should clamp fromIndex values to string bounds before calling into replaceAfter.

Closed Issues

This release closes the following issue:

#812

Commits

Details
  • b5c7e64 - docs: update examples (by Athan Reines)
  • b665537 - feat: resolve negative indices relative to the last string character (by Athan Reines)
  • 04ee89f - feat: add string/base/replace-after (#1363) (by Golden Kumar, Athan Reines)

Contributors

A total of 2 people contributed to this release. Thank you to the following contributors:

  • Athan Reines
  • Golden Kumar