Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmossas committed Aug 7, 2024
1 parent 63b3a78 commit 0e27e98
Show file tree
Hide file tree
Showing 23 changed files with 25 additions and 23 deletions.
2 changes: 2 additions & 0 deletions languages/dart/dart-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 0.59.0

## 0.58.1

## 0.58.0
Expand Down
2 changes: 1 addition & 1 deletion languages/dart/dart-client/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: arri_client
description: Client library needed for the code generated by the arri server library.
version: "0.58.1"
version: "0.59.0"
repository: https://github.com/modiimedia/arri
issue_tracker: https://github.com/modiimedia/arri/issues
environment:
Expand Down
2 changes: 1 addition & 1 deletion languages/dart/dart-codegen-reference/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ packages:
path: "../dart-client"
relative: true
source: path
version: "0.58.1"
version: "0.59.0"
async:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion languages/dart/dart-codegen/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arrirpc/codegen-dart",
"version": "0.58.1",
"version": "0.59.0",
"type": "module",
"license": "MIT",
"author": { "name": "joshmossas", "url": "https://github.com/joshmossas" },
Expand Down
2 changes: 1 addition & 1 deletion languages/kotlin/kotlin-codegen/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arrirpc/codegen-kotlin",
"version": "0.58.1",
"version": "0.59.0",
"type": "module",
"license": "MIT",
"author": { "name": "joshmossas", "url": "https://github.com/joshmossas" },
Expand Down
2 changes: 1 addition & 1 deletion languages/rust/rust-client/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion languages/rust/rust-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "arri_client"
version = "0.58.1"
version = "0.59.0"
edition = "2021"
description = "Client library needed to use rust code generated by the Arri CLI"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion languages/rust/rust-codegen-reference/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion languages/rust/rust-codegen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
"pathe": "^1.1.2"
},
"devDependencies": { "@arrirpc/schema": "workspace:*" },
"version": "0.58.1"
"version": "0.59.0"
}
2 changes: 1 addition & 1 deletion languages/ts/ts-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arrirpc/client",
"version": "0.58.1",
"version": "0.59.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion languages/ts/ts-codegen-reference/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ts-codegen-reference",
"private": true,
"version": "0.58.1",
"version": "0.59.0",
"type": "module",
"license": "MIT",
"author": { "name": "joshmossas", "url": "https://github.com/joshmossas" },
Expand Down
2 changes: 1 addition & 1 deletion languages/ts/ts-codegen/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arrirpc/codegen-ts",
"version": "0.58.1",
"version": "0.59.0",
"type": "module",
"license": "MIT",
"author": { "name": "joshmossas", "url": "https://github.com/joshmossas" },
Expand Down
2 changes: 1 addition & 1 deletion languages/ts/ts-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arrirpc/server",
"version": "0.58.1",
"version": "0.59.0",
"type": "module",
"license": "MIT",
"author": { "name": "joshmossas", "url": "https://github.com/joshmossas" },
Expand Down
2 changes: 1 addition & 1 deletion tests/clients/dart/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ packages:
path: "../../../languages/dart/dart-client"
relative: true
source: path
version: "0.58.1"
version: "0.59.0"
async:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion tests/clients/rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tooling/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "arri",
"version": "0.58.1",
"version": "0.59.0",
"type": "module",
"license": "MIT",
"author": { "name": "joshmossas", "url": "https://github.com/joshmossas" },
Expand Down
4 changes: 2 additions & 2 deletions tooling/cli/src/serverConfigs/_config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ export interface ServerConfig<
TDevArgs extends ArgsDef | undefined = any,
TBuildArgs extends ArgsDef | undefined = any,
> {
devArgs: TDevArgs;
buildArgs: TBuildArgs;
devArgs?: TDevArgs;
buildArgs?: TBuildArgs;
devFn: (
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
args: TDevArgs extends ArgsDef ? ParsedArgs<TDevArgs> : {},
Expand Down
2 changes: 1 addition & 1 deletion tooling/codegen-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arrirpc/codegen-utils",
"version": "0.58.1",
"version": "0.59.0",
"license": "MIT",
"author": { "name": "joshmossas", "url": "https://github.com/joshmossas" },
"bugs": { "url": "https://github.com/modiimedia/arri/issues" },
Expand Down
2 changes: 1 addition & 1 deletion tooling/eslint-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arrirpc/eslint-plugin",
"version": "0.58.1",
"version": "0.59.0",
"license": "MIT",
"author": { "name": "joshmossas", "url": "https://github.com/joshmossas" },
"bugs": { "url": "https://github.com/modiimedia/arri/issues" },
Expand Down
2 changes: 1 addition & 1 deletion tooling/json-schema-to-jtd/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "json-schema-to-jtd",
"version": "0.58.1",
"version": "0.59.0",
"license": "MIT",
"author": { "name": "joshmossas", "url": "https://github.com/joshmossas" },
"bugs": { "url": "https://github.com/modiimedia/arri/issues" },
Expand Down
2 changes: 1 addition & 1 deletion tooling/jtd-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": ["dist"],
"version": "0.58.1",
"version": "0.59.0",
"dependencies": {}
}
2 changes: 1 addition & 1 deletion tooling/schema-typebox-adapter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arrirpc/typebox-adapter",
"version": "0.58.1",
"version": "0.59.0",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion tooling/schema/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arrirpc/schema",
"version": "0.58.1",
"version": "0.59.0",
"type": "module",
"license": "MIT",
"author": { "name": "joshmossas", "url": "https://github.com/joshmossas" },
Expand Down

0 comments on commit 0e27e98

Please sign in to comment.