Skip to content

Commit 573eb32

Browse files
authored
Bump version to 1.45.1 and update changelog (#1609)
2 parents 8dd8823 + e4f2bbd commit 573eb32

File tree

22 files changed

+27
-26
lines changed

22 files changed

+27
-26
lines changed

.version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.45.0
1+
1.45.1

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ChangeLog.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

3-
## Unreleased
3+
## Version 1.45.1
4+
* CLI: Rename the binary back from `svix-cli` to `svix`
45
* Libs/Java: Stop sharing one `ApiClient` between all `Svix` instances. Fixes a bug where multiple
56
independently instantiated `Svix` instances would always use the same base path and auth token.
67

bridge/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bridge/svix-bridge/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "svix-bridge"
3-
version = "1.45.0"
3+
version = "1.45.1"
44
edition = "2021"
55
publish = false
66

csharp/Svix/Svix.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
55
<PackageId>Svix</PackageId>
6-
<Version>1.45.0</Version>
6+
<Version>1.45.1</Version>
77
<Authors>Svix</Authors>
88
<Company>Svix</Company>
99
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>

go/internal/version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package version
22

3-
const Version = "1.45.0"
3+
const Version = "1.45.1"

java/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Add this dependency to your project's POM:
5151
<dependency>
5252
<groupId>com.svix</groupId>
5353
<artifactId>svix</artifactId>
54-
<version>1.45.0</version>
54+
<version>1.45.1</version>
5555
<scope>compile</scope>
5656
</dependency>
5757
```
@@ -61,7 +61,7 @@ Add this dependency to your project's POM:
6161
Add this dependency to your project's build file:
6262

6363
```groovy
64-
implementation "com.svix:svix:1.45.0"
64+
implementation "com.svix:svix:1.45.1"
6565
```
6666

6767
# Development

java/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.svix
2-
VERSION_NAME=1.45.0
2+
VERSION_NAME=1.45.1
33

44
POM_URL=https://github.com/svix/svix-webhooks
55
POM_SCM_URL[email protected]:svix/svix-webhooks.git

java/lib/src/main/java/com/svix/Svix.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import com.svix.internal.auth.HttpBearerAuth;
66

77
public final class Svix {
8-
public static final String VERSION = "1.45.0";
8+
public static final String VERSION = "1.45.1";
99
private final Application application;
1010
private final Authentication authentication;
1111
private final Endpoint endpoint;

javascript/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "svix",
3-
"version": "1.45.0",
3+
"version": "1.45.1",
44
"description": "Svix webhooks API client and webhook verification library",
55
"author": "svix",
66
"repository": "https://github.com/svix/svix-libs",

javascript/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export {
3636
} from "./api/message_attempt";
3737
export { OperationalWebhookEndpointListOptions } from "./api/op_webhook_endpoint";
3838

39-
const VERSION = "1.45.0";
39+
const VERSION = "1.45.1";
4040

4141
class UserAgentMiddleware implements Middleware {
4242
public pre(context: RequestContext): Promise<RequestContext> {

kotlin/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Add this dependency to your project's POM:
5151
<dependency>
5252
<groupId>com.svix.kotlin</groupId>
5353
<artifactId>svix-kotlin</artifactId>
54-
<version>1.45.0</version>
54+
<version>1.45.1</version>
5555
<scope>compile</scope>
5656
</dependency>
5757
```
@@ -61,7 +61,7 @@ Add this dependency to your project's POM:
6161
Add this dependency to your project's build file:
6262

6363
```groovy
64-
implementation "com.svix.kotlin:svix-kotlin:1.45.0"
64+
implementation "com.svix.kotlin:svix-kotlin:1.45.1"
6565
```
6666

6767
# Development

kotlin/gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.svix.kotlin
2-
VERSION_NAME=1.45.0
2+
VERSION_NAME=1.45.1
33

44
POM_URL=https://github.com/svix/svix-webhooks
55
POM_SCM_URL[email protected]:svix/svix-webhooks.git

python/svix/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@
3737
"WebhookVerificationError",
3838
]
3939

40-
__version__ = "1.45.0"
40+
__version__ = "1.45.1"

ruby/Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
svix (1.45.0)
4+
svix (1.45.1)
55

66
GEM
77
remote: https://rubygems.org/

ruby/lib/svix/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Svix
4-
VERSION = "1.45.0"
4+
VERSION = "1.45.1"
55
end

rust/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "svix"
3-
version = "1.45.0"
3+
version = "1.45.1"
44
authors = ["Svix Inc. <[email protected]>"]
55
edition = "2021"
66
description = "Svix webhooks API client and webhook verification library"

server/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/svix-server/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "svix-server"
3-
version = "1.45.0"
3+
version = "1.45.1"
44
description = "Svix webhooks server"
55
publish = false
66
edition.workspace = true

svix-cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "svix-cli"
33
description = "A CLI to interact with the Svix API."
44
homepage = "https://www.svix.com"
55
authors = ["Svix Inc. <[email protected]>"]
6-
version = "1.45.0"
6+
version = "1.45.1"
77
edition = "2021"
88
license = "MIT"
99
keywords = ["svix", "webhooks", "diahook"]

svix-cli/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ A CLI to interact with the Svix API.
2424
Pre-built binaries are available for Linux, macOS via shell script installers.
2525

2626
```
27-
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/svix/svix-webhooks/releases/download/v1.45.0/svix-cli-installer.sh | sh
27+
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/svix/svix-webhooks/releases/download/v1.45.1/svix-cli-installer.sh | sh
2828
```
2929

3030
For Windows users, installation can be done via powershell:
3131

3232
```
33-
powershell -ExecutionPolicy ByPass -c "irm https://github.com/svix-onelson/svix-webhooks/releases/download/v1.45.0/svix-cli-installer.ps1 | iex"
33+
powershell -ExecutionPolicy ByPass -c "irm https://github.com/svix-onelson/svix-webhooks/releases/download/v1.45.1/svix-cli-installer.ps1 | iex"
3434
```
3535

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

0 commit comments

Comments
 (0)