Skip to content
Open
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
7 changes: 0 additions & 7 deletions .changeset/escape-quotes-in-completion-descriptions.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-tmap-remove-colliding-keys.md

This file was deleted.

11 changes: 11 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @effect/cli

## 0.77.1

### Patch Changes

- [#7173](https://github.com/Effect-TS/effect/pull/7173) [`2059606`](https://github.com/Effect-TS/effect/commit/20596061bd24dd7f18c5b5c839111310d730d6e9) Thanks @dv-waynehaffenden! - Escape quotes in generated shell completion descriptions.

Single-quoted zsh and fish completion descriptions are escaped to preserve apostrophes in subcommands, options, and arguments.

- Updated dependencies [[`291d5a9`](https://github.com/Effect-TS/effect/commit/291d5a9bf2ead7b766d613b880831f5d687fd44f)]:
- effect@3.22.2

## 0.77.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effect/cli",
"version": "0.77.0",
"version": "0.77.1",
"type": "module",
"license": "MIT",
"description": "A library for building command-line interfaces with Effect",
Expand Down
6 changes: 6 additions & 0 deletions packages/effect/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# effect

## 3.22.2

### Patch Changes

- [#6233](https://github.com/Effect-TS/effect/pull/6233) [`291d5a9`](https://github.com/Effect-TS/effect/commit/291d5a9bf2ead7b766d613b880831f5d687fd44f) Thanks @mvanhorn! - Fix TMap.remove and removeAll erroneously clearing entire bucket on hash collision.

## 3.22.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/effect/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "effect",
"version": "3.22.1",
"version": "3.22.2",
"type": "module",
"license": "MIT",
"description": "The missing standard library for TypeScript, for writing production-grade software.",
Expand Down
2 changes: 1 addition & 1 deletion packages/effect/src/internal/version.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
let moduleVersion = "3.22.1"
let moduleVersion = "3.22.2"

export const getCurrentVersion = () => moduleVersion

Expand Down
Loading