Skip to content

Commit

Permalink
Version Packages (#3330)
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 Jul 24, 2024
1 parent c8f8690 commit d1018b0
Show file tree
Hide file tree
Showing 51 changed files with 246 additions and 70 deletions.
36 changes: 0 additions & 36 deletions .changeset/fair-rockets-sell.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wise-boxes-work.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/young-onions-drum.md

This file was deleted.

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

## 0.39.1

### Patch Changes

- [#3329](https://github.com/Effect-TS/effect/pull/3329) [`b8e3ab6`](https://github.com/Effect-TS/effect/commit/b8e3ab6739d122c31fb9b91ea5cbfc1afff1180b) Thanks @IMax153! - The `Prompt.all` method now supports taking in a record of `Prompt`s to be more
consistent with other `all` APIs throughout the Effect ecosystem.

You can now do:

```ts
import * as Prompt from "@effect/cli/Prompt"
import * as NodeContext from "@effect/platform-node/NodeContext"
import * as Runtime from "@effect/platform-node/NodeRuntime"
import * as Effect from "effect/Effect"

const program = Prompt.all({
username: Prompt.text({
message: "Enter your username"
}),
password: Prompt.password({
message: "Enter your password: ",
validate: (value) =>
value.length === 0
? Effect.fail("Password cannot be empty")
: Effect.succeed(value)
})
})

program.pipe(
Effect.flatMap(({ username, password }) => /* Your logic here */ ),
Effect.provide(NodeContext.layer),
NodeRuntime.runMain
)
```

- [#3332](https://github.com/Effect-TS/effect/pull/3332) [`c8f8690`](https://github.com/Effect-TS/effect/commit/c8f86905859c39ed2735890eebe8d73ceb2eb12e) Thanks @IMax153! - improve the `Prompt.all` JSDoc and add example

- Updated dependencies [[`f241154`](https://github.com/Effect-TS/effect/commit/f241154added5d91e95866c39481f09cdb13bd4d)]:
- @effect/schema@0.69.1
- @effect/platform@0.60.1

## 0.39.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.39.0",
"version": "0.39.1",
"type": "module",
"license": "MIT",
"description": "A library for building command-line interfaces with Effect",
Expand Down
9 changes: 9 additions & 0 deletions packages/cluster-browser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @effect/cluster

## 0.2.1

### Patch Changes

- Updated dependencies [[`f241154`](https://github.com/Effect-TS/effect/commit/f241154added5d91e95866c39481f09cdb13bd4d)]:
- @effect/schema@0.69.1
- @effect/platform@0.60.1
- @effect/platform-node@0.55.1

## 0.2.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cluster-browser/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@effect/cluster-browser",
"type": "module",
"version": "0.2.0",
"version": "0.2.1",
"description": "Unified interfaces for common cluster-browser-specific services",
"publishConfig": {
"access": "public",
Expand Down
10 changes: 10 additions & 0 deletions packages/cluster-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @effect/cluster

## 0.2.1

### Patch Changes

- Updated dependencies [[`f241154`](https://github.com/Effect-TS/effect/commit/f241154added5d91e95866c39481f09cdb13bd4d)]:
- @effect/schema@0.69.1
- @effect/platform@0.60.1
- @effect/platform-node@0.55.1
- @effect/rpc@0.33.1

## 0.2.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cluster-node/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@effect/cluster-node",
"type": "module",
"version": "0.2.0",
"version": "0.2.1",
"description": "Unified interfaces for common cluster-node-specific services",
"publishConfig": {
"access": "public",
Expand Down
8 changes: 8 additions & 0 deletions packages/cluster-workflow/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @effect/cluster

## 0.2.1

### Patch Changes

- Updated dependencies [[`f241154`](https://github.com/Effect-TS/effect/commit/f241154added5d91e95866c39481f09cdb13bd4d)]:
- @effect/schema@0.69.1
- @effect/platform-node@0.55.1

## 0.2.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cluster-workflow/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@effect/cluster-workflow",
"type": "module",
"version": "0.2.0",
"version": "0.2.1",
"description": "A workflow runtime using effect-cluster",
"publishConfig": {
"access": "public",
Expand Down
8 changes: 8 additions & 0 deletions packages/cluster/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @effect/cluster

## 0.2.1

### Patch Changes

- Updated dependencies [[`f241154`](https://github.com/Effect-TS/effect/commit/f241154added5d91e95866c39481f09cdb13bd4d)]:
- @effect/schema@0.69.1
- @effect/sql@0.6.1

## 0.2.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cluster/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@effect/cluster",
"type": "module",
"version": "0.2.0",
"version": "0.2.1",
"description": "Unified interfaces for common cluster-specific services",
"publishConfig": {
"access": "public",
Expand Down
9 changes: 9 additions & 0 deletions packages/experimental/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @effect/experimental

## 0.20.2

### Patch Changes

- Updated dependencies [[`f241154`](https://github.com/Effect-TS/effect/commit/f241154added5d91e95866c39481f09cdb13bd4d)]:
- @effect/schema@0.69.1
- @effect/platform@0.60.1
- @effect/platform-node@0.55.1

## 0.20.1

### 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.20.1",
"version": "0.20.2",
"type": "module",
"license": "MIT",
"description": "Experimental modules for the Effect ecosystem",
Expand Down
7 changes: 7 additions & 0 deletions packages/platform-browser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @effect/platform-browser

## 0.39.1

### Patch Changes

- Updated dependencies []:
- @effect/platform@0.60.1

## 0.39.0

### 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.39.0",
"version": "0.39.1",
"license": "MIT",
"description": "Platform specific implementations for the browser",
"homepage": "https://effect.website",
Expand Down
8 changes: 8 additions & 0 deletions packages/platform-bun/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @effect/platform-bun

## 0.40.1

### Patch Changes

- Updated dependencies []:
- @effect/platform@0.60.1
- @effect/platform-node-shared@0.10.1

## 0.40.0

### 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.40.0",
"version": "0.40.1",
"license": "MIT",
"description": "Platform specific implementations for the Bun runtime",
"homepage": "https://effect.website",
Expand Down
7 changes: 7 additions & 0 deletions packages/platform-node-shared/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @effect/platform-node-shared

## 0.10.1

### Patch Changes

- Updated dependencies []:
- @effect/platform@0.60.1

## 0.10.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/platform-node-shared/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@effect/platform-node-shared",
"type": "module",
"version": "0.10.0",
"version": "0.10.1",
"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.55.1

### Patch Changes

- Updated dependencies []:
- @effect/platform@0.60.1
- @effect/platform-node-shared@0.10.1

## 0.55.0

### 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.55.0",
"version": "0.55.1",
"license": "MIT",
"description": "Platform specific implementations for the Node.js runtime",
"homepage": "https://effect.website",
Expand Down
7 changes: 7 additions & 0 deletions packages/platform/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @effect/platform

## 0.60.1

### Patch Changes

- Updated dependencies [[`f241154`](https://github.com/Effect-TS/effect/commit/f241154added5d91e95866c39481f09cdb13bd4d)]:
- @effect/schema@0.69.1

## 0.60.0

### 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.60.0",
"version": "0.60.1",
"license": "MIT",
"description": "Unified interfaces for common platform-specific services",
"homepage": "https://effect.website",
Expand Down
9 changes: 9 additions & 0 deletions packages/rpc-http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @effect/rpc-http

## 0.31.1

### Patch Changes

- Updated dependencies [[`f241154`](https://github.com/Effect-TS/effect/commit/f241154added5d91e95866c39481f09cdb13bd4d)]:
- @effect/schema@0.69.1
- @effect/platform@0.60.1
- @effect/rpc@0.33.1

## 0.31.0

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

## 0.33.1

### Patch Changes

- Updated dependencies [[`f241154`](https://github.com/Effect-TS/effect/commit/f241154added5d91e95866c39481f09cdb13bd4d)]:
- @effect/schema@0.69.1
- @effect/platform@0.60.1

## 0.33.0

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

## 0.69.1

### Patch Changes

- [#3333](https://github.com/Effect-TS/effect/pull/3333) [`f241154`](https://github.com/Effect-TS/effect/commit/f241154added5d91e95866c39481f09cdb13bd4d) Thanks @gcanti! - Expose success and failure schemas on `TaggedRequestClass` interface, closes #3331

## 0.69.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/schema/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@effect/schema",
"version": "0.69.0",
"version": "0.69.1",
"type": "module",
"license": "MIT",
"description": "Modeling the schema of data structures as first-class values",
Expand Down
Loading

0 comments on commit d1018b0

Please sign in to comment.