From 0f38bee6efae5f7462659cfad8967176f13fb017 Mon Sep 17 00:00:00 2001 From: Santiago Carmuega Date: Sun, 28 Jul 2024 18:06:12 -0300 Subject: [PATCH] release: v0.8.0 --- .bumpversion.toml | 2 +- gen/dotnet/Utxorpc.Spec.csproj | 2 +- gen/haskell/utxorpc.cabal | 4 ++-- gen/node/package.json | 2 +- gen/rust/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.toml b/.bumpversion.toml index 452d798..baaacd9 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "0.7.0" +current_version = "0.8.0" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] search = "{current_version}" diff --git a/gen/dotnet/Utxorpc.Spec.csproj b/gen/dotnet/Utxorpc.Spec.csproj index 0983e5f..6d84698 100644 --- a/gen/dotnet/Utxorpc.Spec.csproj +++ b/gen/dotnet/Utxorpc.Spec.csproj @@ -5,7 +5,7 @@ enable enable Utxorpc.Spec - 0.7.0-alpha + 0.8.0-alpha clark@txpipe.io TxPipe LLC diff --git a/gen/haskell/utxorpc.cabal b/gen/haskell/utxorpc.cabal index 7c875ba..9b9d4f3 100644 --- a/gen/haskell/utxorpc.cabal +++ b/gen/haskell/utxorpc.cabal @@ -1,7 +1,7 @@ cabal-version: 3.0 name: utxorpc -version: 0.0.7.0 +version: 0.0.8.0 synopsis: Generated code for a gRPC interface for UTxO Blockchains description: [UTxO RPC](https://utxorpc.org/) (u5c for short) is an interface tailored for interactions with UTxO-based blockchains, prioritizing performance and developer experience. By providing a common contract, a range of SDKs, and thorough documentation, UTxO RPC aims to facilitate: @@ -43,5 +43,5 @@ library , proto-lens >= 0.7.1 && < 0.8 -- >= 0.7.2 required as it contains support for `FieldMask` , proto-lens-protobuf-types >= 0.7.2 && < 0.8 - , proto-lens-runtime >= 0.7.0 && < 0.8 + , proto-lens-runtime >= 0.8.0 && < 0.8 default-language: Haskell2010 diff --git a/gen/node/package.json b/gen/node/package.json index fad9fe2..0326bbf 100644 --- a/gen/node/package.json +++ b/gen/node/package.json @@ -1,6 +1,6 @@ { "name": "@utxorpc/spec", - "version": "0.7.0", + "version": "0.8.0", "description": "UTxO RPC auto-generated spec types & stubs", "main": "./lib/index.js", "types": "./lib/index.d.ts", diff --git a/gen/rust/Cargo.toml b/gen/rust/Cargo.toml index 48a4044..3356bd8 100644 --- a/gen/rust/Cargo.toml +++ b/gen/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "utxorpc-spec" -version = "0.7.0" +version = "0.8.0" edition = "2021" description = "Auto-generated structs for the UTxO RPC spec" repository = "https://github.com/utxorpc/spec"