Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to version 1.61.0 #1770

Merged
merged 1 commit into from
Feb 28, 2025
Merged
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
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.60.1
1.61.0
2 changes: 1 addition & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## Version 1.61.0
* Libs/Ruby **(Breaking)**: Ruby version changed from `2.7` to `3.4.2`
* Libs/Ruby **(Breaking)**: Deprecated methods `MessageAttempt.list` and `MessageAttempt.list_attempts_for_endpoint` are removed

Expand Down
2 changes: 1 addition & 1 deletion bridge/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 bridge/svix-bridge/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "svix-bridge"
version = "1.60.1"
version = "1.61.0"
edition = "2021"
publish = false

Expand Down
2 changes: 1 addition & 1 deletion csharp/Svix/Svix.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<PackageId>Svix</PackageId>
<Version>1.60.1</Version>
<Version>1.61.0</Version>
<Authors>Svix</Authors>
<Company>Svix</Company>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand Down
2 changes: 1 addition & 1 deletion csharp/Svix/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ namespace Svix
{
public static class Version
{
public const string version = "1.60.1";
public const string version = "1.61.0";
}
}
2 changes: 1 addition & 1 deletion go/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package svix

const Version = "1.60.1"
const Version = "1.61.0"
4 changes: 2 additions & 2 deletions java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.svix</groupId>
<artifactId>svix</artifactId>
<version>1.60.1</version>
<version>1.61.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -61,7 +61,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
implementation "com.svix:svix:1.60.1"
implementation "com.svix:svix:1.61.0"
```

# Development
Expand Down
2 changes: 1 addition & 1 deletion java/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.svix
VERSION_NAME=1.60.1
VERSION_NAME=1.61.0

POM_URL=https://github.com/svix/svix-webhooks
[email protected]:svix/svix-webhooks.git
Expand Down
2 changes: 1 addition & 1 deletion java/lib/src/main/java/com/svix/Version.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package com.svix;

public class Version {
public static final String VERSION = "1.60.1";
public static final String VERSION = "1.61.0";
}
2 changes: 1 addition & 1 deletion javascript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "svix",
"version": "1.60.1",
"version": "1.61.0",
"description": "Svix webhooks API client and webhook verification library",
"author": "svix",
"repository": "https://github.com/svix/svix-libs",
Expand Down
2 changes: 1 addition & 1 deletion javascript/src/request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import "svix-fetch";
import { ApiException } from "./util";
import { HttpErrorOut, HTTPValidationError } from "./HttpErrors";

export const LIB_VERSION = "1.60.1";
export const LIB_VERSION = "1.61.0";
const USER_AGENT = `svix-libs/${LIB_VERSION}/javascript`;

export enum HttpMethod {
Expand Down
4 changes: 2 additions & 2 deletions kotlin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.svix.kotlin</groupId>
<artifactId>svix-kotlin</artifactId>
<version>1.60.1</version>
<version>1.61.0</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -61,7 +61,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
implementation "com.svix.kotlin:svix-kotlin:1.60.1"
implementation "com.svix.kotlin:svix-kotlin:1.61.0"
```

# Development
Expand Down
2 changes: 1 addition & 1 deletion kotlin/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.svix.kotlin
VERSION_NAME=1.60.1
VERSION_NAME=1.61.0

POM_URL=https://github.com/svix/svix-webhooks
[email protected]:svix/svix-webhooks.git
Expand Down
2 changes: 1 addition & 1 deletion kotlin/lib/src/main/kotlin/Version.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package com.svix.kotlin

const val Version = "1.60.1"
const val Version = "1.61.0"
2 changes: 1 addition & 1 deletion python/svix/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@
"WebhookVerificationError",
]

__version__ = "1.60.1"
__version__ = "1.61.0"
2 changes: 1 addition & 1 deletion ruby/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
svix (1.60.1)
svix (1.61.0)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion ruby/lib/svix/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Svix
VERSION = "1.60.1"
VERSION = "1.61.0"
end
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "svix"
version = "1.60.1"
version = "1.61.0"
authors = ["Svix Inc. <[email protected]>"]
edition = "2021"
description = "Svix webhooks API client and webhook verification library"
Expand Down
2 changes: 1 addition & 1 deletion server/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 server/svix-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "svix-server"
version = "1.60.1"
version = "1.61.0"
description = "Svix webhooks server"
publish = false
edition.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions svix-cli/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 svix-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "svix-cli"
description = "A CLI to interact with the Svix API."
homepage = "https://www.svix.com"
authors = ["Svix Inc. <[email protected]>"]
version = "1.60.1"
version = "1.61.0"
edition = "2021"
license = "MIT"
keywords = ["svix", "webhooks", "diahook"]
Expand Down
4 changes: 2 additions & 2 deletions svix-cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ A CLI to interact with the Svix API.
Pre-built binaries are available for Linux, macOS via shell script installers.

```
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/svix/svix-webhooks/releases/download/v1.60.1/svix-cli-installer.sh | sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/svix/svix-webhooks/releases/download/v1.61.0/svix-cli-installer.sh | sh
```

For Windows users, installation can be done via powershell:

```
powershell -ExecutionPolicy ByPass -c "irm https://github.com/svix-onelson/svix-webhooks/releases/download/v1.60.1/svix-cli-installer.ps1 | iex"
powershell -ExecutionPolicy ByPass -c "irm https://github.com/svix-onelson/svix-webhooks/releases/download/v1.61.0/svix-cli-installer.ps1 | iex"
```

These scripts will install the binaries to `~/.svix/bin` and also add this directory to your `PATH` by default.
Expand Down
Loading