Skip to content

Commit

Permalink
Version Packages (#2066)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Feb 7, 2024
1 parent 6928a2b commit b57db1c
Show file tree
Hide file tree
Showing 39 changed files with 200 additions and 66 deletions.
8 changes: 0 additions & 8 deletions .changeset/chilly-birds-eat.md

This file was deleted.

28 changes: 0 additions & 28 deletions .changeset/mean-wasps-eat.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/tall-nails-retire.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/twenty-clouds-behave.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.32.1

### Patch Changes

- Updated dependencies [[`d0b911c`](https://github.com/Effect-TS/effect/commit/d0b911c75f284c7aa87f25aa96926e6bde7690d0), [`330e1a4`](https://github.com/Effect-TS/effect/commit/330e1a4e2c1fc0af6c80c80c81dd38c3e50fab78), [`6928a2b`](https://github.com/Effect-TS/effect/commit/6928a2b0bae86a4bdfbece0aa32924207c2d5a70), [`296bc1c`](https://github.com/Effect-TS/effect/commit/296bc1c9d24986d299d2669115d584cb27b73c60)]:
- effect@2.2.4
- @effect/platform@0.43.10
- @effect/schema@0.61.6
- @effect/printer@0.30.13
- @effect/printer-ansi@0.31.13

## 0.32.0

### Minor 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.32.0",
"version": "0.32.1",
"type": "module",
"license": "MIT",
"description": "Functional programming in TypeScript",
Expand Down
38 changes: 38 additions & 0 deletions packages/effect/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# effect

## 2.2.4

### Patch Changes

- [#2067](https://github.com/Effect-TS/effect/pull/2067) [`d0b911c`](https://github.com/Effect-TS/effect/commit/d0b911c75f284c7aa87f25aa96926e6bde7690d0) Thanks [@tim-smart](https://github.com/tim-smart)! - add releaseAll api to Semaphore

You can use `semphore.releaseAll` to atomically release all the permits of a
Semaphore.

- [#2071](https://github.com/Effect-TS/effect/pull/2071) [`330e1a4`](https://github.com/Effect-TS/effect/commit/330e1a4e2c1fc0af6c80c80c81dd38c3e50fab78) Thanks [@tim-smart](https://github.com/tim-smart)! - add Option.orElseSome

Allows you to specify a default value for an Option, similar to
Option.getOrElse, except the return value is still an Option.

```ts
import * as O from "effect/Option";
import { pipe } from "effect/Function";

assert.deepStrictEqual(
pipe(
O.none(),
O.orElseSome(() => "b"),
),
O.some("b"),
);
assert.deepStrictEqual(
pipe(
O.some("a"),
O.orElseSome(() => "b"),
),
O.some("a"),
);
```

- [#2057](https://github.com/Effect-TS/effect/pull/2057) [`6928a2b`](https://github.com/Effect-TS/effect/commit/6928a2b0bae86a4bdfbece0aa32924207c2d5a70) Thanks [@joepjoosten](https://github.com/joepjoosten)! - Fix for possible stack overflow errors when using Array.push with spread operator arguments

- [#2033](https://github.com/Effect-TS/effect/pull/2033) [`296bc1c`](https://github.com/Effect-TS/effect/commit/296bc1c9d24986d299d2669115d584cb27b73c60) Thanks [@rehos](https://github.com/rehos)! - Add toJSON for Secret

## 2.2.3

### 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": "2.2.3",
"version": "2.2.4",
"type": "module",
"license": "MIT",
"description": "Functional programming in TypeScript",
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 +1 @@
export const moduleVersion = "2.2.3"
export const moduleVersion = "2.2.4"
10 changes: 10 additions & 0 deletions packages/experimental/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @effect/experimental

## 0.8.9

### Patch Changes

- Updated dependencies [[`d0b911c`](https://github.com/Effect-TS/effect/commit/d0b911c75f284c7aa87f25aa96926e6bde7690d0), [`330e1a4`](https://github.com/Effect-TS/effect/commit/330e1a4e2c1fc0af6c80c80c81dd38c3e50fab78), [`6928a2b`](https://github.com/Effect-TS/effect/commit/6928a2b0bae86a4bdfbece0aa32924207c2d5a70), [`296bc1c`](https://github.com/Effect-TS/effect/commit/296bc1c9d24986d299d2669115d584cb27b73c60)]:
- effect@2.2.4
- @effect/platform@0.43.10
- @effect/schema@0.61.6
- @effect/platform-node@0.42.10

## 0.8.8

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/experimental/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effect/experimental",
"version": "0.8.8",
"version": "0.8.9",
"type": "module",
"license": "MIT",
"description": "Functional programming in TypeScript",
Expand Down
7 changes: 7 additions & 0 deletions packages/opentelemetry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @effect/opentelemetry

## 0.30.13

### Patch Changes

- Updated dependencies [[`d0b911c`](https://github.com/Effect-TS/effect/commit/d0b911c75f284c7aa87f25aa96926e6bde7690d0), [`330e1a4`](https://github.com/Effect-TS/effect/commit/330e1a4e2c1fc0af6c80c80c81dd38c3e50fab78), [`6928a2b`](https://github.com/Effect-TS/effect/commit/6928a2b0bae86a4bdfbece0aa32924207c2d5a70), [`296bc1c`](https://github.com/Effect-TS/effect/commit/296bc1c9d24986d299d2669115d584cb27b73c60)]:
- effect@2.2.4

## 0.30.12

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/opentelemetry/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effect/opentelemetry",
"version": "0.30.12",
"version": "0.30.13",
"type": "module",
"license": "MIT",
"description": "Functional programming in TypeScript",
Expand Down
8 changes: 8 additions & 0 deletions packages/platform-browser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @effect/platform-browser

## 0.28.10

### Patch Changes

- Updated dependencies [[`d0b911c`](https://github.com/Effect-TS/effect/commit/d0b911c75f284c7aa87f25aa96926e6bde7690d0), [`330e1a4`](https://github.com/Effect-TS/effect/commit/330e1a4e2c1fc0af6c80c80c81dd38c3e50fab78), [`6928a2b`](https://github.com/Effect-TS/effect/commit/6928a2b0bae86a4bdfbece0aa32924207c2d5a70), [`296bc1c`](https://github.com/Effect-TS/effect/commit/296bc1c9d24986d299d2669115d584cb27b73c60)]:
- effect@2.2.4
- @effect/platform@0.43.10

## 0.28.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/platform-browser/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@effect/platform-browser",
"type": "module",
"version": "0.28.9",
"version": "0.28.10",
"license": "MIT",
"description": "Unified interfaces for common platform-specific services",
"homepage": "https://effect.website",
Expand Down
9 changes: 9 additions & 0 deletions packages/platform-bun/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @effect/platform-bun

## 0.30.10

### Patch Changes

- Updated dependencies [[`d0b911c`](https://github.com/Effect-TS/effect/commit/d0b911c75f284c7aa87f25aa96926e6bde7690d0), [`330e1a4`](https://github.com/Effect-TS/effect/commit/330e1a4e2c1fc0af6c80c80c81dd38c3e50fab78), [`6928a2b`](https://github.com/Effect-TS/effect/commit/6928a2b0bae86a4bdfbece0aa32924207c2d5a70), [`296bc1c`](https://github.com/Effect-TS/effect/commit/296bc1c9d24986d299d2669115d584cb27b73c60)]:
- effect@2.2.4
- @effect/platform@0.43.10
- @effect/platform-node@0.42.10

## 0.30.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/platform-bun/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@effect/platform-bun",
"type": "module",
"version": "0.30.9",
"version": "0.30.10",
"license": "MIT",
"description": "Unified interfaces for common platform-specific services",
"homepage": "https://effect.website",
Expand Down
8 changes: 8 additions & 0 deletions packages/platform-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @effect/platform-node

## 0.42.10

### Patch Changes

- Updated dependencies [[`d0b911c`](https://github.com/Effect-TS/effect/commit/d0b911c75f284c7aa87f25aa96926e6bde7690d0), [`330e1a4`](https://github.com/Effect-TS/effect/commit/330e1a4e2c1fc0af6c80c80c81dd38c3e50fab78), [`6928a2b`](https://github.com/Effect-TS/effect/commit/6928a2b0bae86a4bdfbece0aa32924207c2d5a70), [`296bc1c`](https://github.com/Effect-TS/effect/commit/296bc1c9d24986d299d2669115d584cb27b73c60)]:
- effect@2.2.4
- @effect/platform@0.43.10

## 0.42.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/platform-node/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@effect/platform-node",
"type": "module",
"version": "0.42.9",
"version": "0.42.10",
"license": "MIT",
"description": "Unified interfaces for common platform-specific services",
"homepage": "https://effect.website",
Expand Down
10 changes: 10 additions & 0 deletions packages/platform/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @effect/platform

## 0.43.10

### Patch Changes

- [#2057](https://github.com/Effect-TS/effect/pull/2057) [`6928a2b`](https://github.com/Effect-TS/effect/commit/6928a2b0bae86a4bdfbece0aa32924207c2d5a70) Thanks [@joepjoosten](https://github.com/joepjoosten)! - Fix for possible stack overflow errors when using Array.push with spread operator arguments

- Updated dependencies [[`d0b911c`](https://github.com/Effect-TS/effect/commit/d0b911c75f284c7aa87f25aa96926e6bde7690d0), [`330e1a4`](https://github.com/Effect-TS/effect/commit/330e1a4e2c1fc0af6c80c80c81dd38c3e50fab78), [`6928a2b`](https://github.com/Effect-TS/effect/commit/6928a2b0bae86a4bdfbece0aa32924207c2d5a70), [`296bc1c`](https://github.com/Effect-TS/effect/commit/296bc1c9d24986d299d2669115d584cb27b73c60)]:
- effect@2.2.4
- @effect/schema@0.61.6

## 0.43.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/platform/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@effect/platform",
"type": "module",
"version": "0.43.9",
"version": "0.43.10",
"license": "MIT",
"description": "Unified interfaces for common platform-specific services",
"homepage": "https://effect.website",
Expand Down
9 changes: 9 additions & 0 deletions packages/printer-ansi/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @effect/printer-ansi

## 0.31.13

### Patch Changes

- Updated dependencies [[`d0b911c`](https://github.com/Effect-TS/effect/commit/d0b911c75f284c7aa87f25aa96926e6bde7690d0), [`330e1a4`](https://github.com/Effect-TS/effect/commit/330e1a4e2c1fc0af6c80c80c81dd38c3e50fab78), [`6928a2b`](https://github.com/Effect-TS/effect/commit/6928a2b0bae86a4bdfbece0aa32924207c2d5a70), [`296bc1c`](https://github.com/Effect-TS/effect/commit/296bc1c9d24986d299d2669115d584cb27b73c60)]:
- effect@2.2.4
- @effect/printer@0.30.13
- @effect/typeclass@0.22.13

## 0.31.12

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/printer-ansi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effect/printer-ansi",
"version": "0.31.12",
"version": "0.31.13",
"type": "module",
"license": "MIT",
"description": "Unified interfaces for common platform-specific services",
Expand Down
8 changes: 8 additions & 0 deletions packages/printer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @effect/printer

## 0.30.13

### Patch Changes

- Updated dependencies [[`d0b911c`](https://github.com/Effect-TS/effect/commit/d0b911c75f284c7aa87f25aa96926e6bde7690d0), [`330e1a4`](https://github.com/Effect-TS/effect/commit/330e1a4e2c1fc0af6c80c80c81dd38c3e50fab78), [`6928a2b`](https://github.com/Effect-TS/effect/commit/6928a2b0bae86a4bdfbece0aa32924207c2d5a70), [`296bc1c`](https://github.com/Effect-TS/effect/commit/296bc1c9d24986d299d2669115d584cb27b73c60)]:
- effect@2.2.4
- @effect/typeclass@0.22.13

## 0.30.12

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/printer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effect/printer",
"version": "0.30.12",
"version": "0.30.13",
"type": "module",
"license": "MIT",
"description": "Unified interfaces for common platform-specific services",
Expand Down
10 changes: 10 additions & 0 deletions packages/rpc-http-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @effect/rpc-http-node

## 0.25.24

### Patch Changes

- Updated dependencies [[`d0b911c`](https://github.com/Effect-TS/effect/commit/d0b911c75f284c7aa87f25aa96926e6bde7690d0), [`330e1a4`](https://github.com/Effect-TS/effect/commit/330e1a4e2c1fc0af6c80c80c81dd38c3e50fab78), [`6928a2b`](https://github.com/Effect-TS/effect/commit/6928a2b0bae86a4bdfbece0aa32924207c2d5a70), [`296bc1c`](https://github.com/Effect-TS/effect/commit/296bc1c9d24986d299d2669115d584cb27b73c60)]:
- effect@2.2.4
- @effect/platform@0.43.10
- @effect/rpc@0.26.17
- @effect/rpc-http@0.25.24

## 0.25.23

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/rpc-http-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effect/rpc-http-node",
"version": "0.25.23",
"version": "0.25.24",
"type": "module",
"license": "MIT",
"description": "Functional programming in TypeScript",
Expand Down
10 changes: 10 additions & 0 deletions packages/rpc-http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @effect/rpc-http

## 0.25.24

### Patch Changes

- Updated dependencies [[`d0b911c`](https://github.com/Effect-TS/effect/commit/d0b911c75f284c7aa87f25aa96926e6bde7690d0), [`330e1a4`](https://github.com/Effect-TS/effect/commit/330e1a4e2c1fc0af6c80c80c81dd38c3e50fab78), [`6928a2b`](https://github.com/Effect-TS/effect/commit/6928a2b0bae86a4bdfbece0aa32924207c2d5a70), [`296bc1c`](https://github.com/Effect-TS/effect/commit/296bc1c9d24986d299d2669115d584cb27b73c60)]:
- effect@2.2.4
- @effect/platform@0.43.10
- @effect/schema@0.61.6
- @effect/rpc@0.26.17

## 0.25.23

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/rpc-http/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effect/rpc-http",
"version": "0.25.23",
"version": "0.25.24",
"type": "module",
"license": "MIT",
"description": "Functional programming in TypeScript",
Expand Down
10 changes: 10 additions & 0 deletions packages/rpc-nextjs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @effect/rpc-nextjs

## 0.25.24

### Patch Changes

- Updated dependencies [[`d0b911c`](https://github.com/Effect-TS/effect/commit/d0b911c75f284c7aa87f25aa96926e6bde7690d0), [`330e1a4`](https://github.com/Effect-TS/effect/commit/330e1a4e2c1fc0af6c80c80c81dd38c3e50fab78), [`6928a2b`](https://github.com/Effect-TS/effect/commit/6928a2b0bae86a4bdfbece0aa32924207c2d5a70), [`296bc1c`](https://github.com/Effect-TS/effect/commit/296bc1c9d24986d299d2669115d584cb27b73c60)]:
- effect@2.2.4
- @effect/platform@0.43.10
- @effect/rpc@0.26.17
- @effect/rpc-http@0.25.24

## 0.25.23

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/rpc-nextjs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effect/rpc-nextjs",
"version": "0.25.23",
"version": "0.25.24",
"type": "module",
"license": "MIT",
"description": "Functional programming in TypeScript",
Expand Down
Loading

0 comments on commit b57db1c

Please sign in to comment.