Skip to content

Commit 8367630

Browse files
committed
Bump version & update changelog
1 parent 22417b5 commit 8367630

File tree

16 files changed

+20
-17
lines changed

16 files changed

+20
-17
lines changed

.version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.54.0
1+
0.54.1

ChangeLog.md

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
## Next
44
*
55

6+
## Version 0.54.1
7+
* Server: fix release CI
8+
69
## Version 0.54.0
710
* Libs: add retry and request-id headers for easier debugging.
811
* Server: add more release targets (macOS and aarch64).

csharp/Svix/Svix.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFramework>net5.0</TargetFramework>
55
<PackageId>Svix</PackageId>
6-
<Version>0.54.0</Version>
6+
<Version>0.54.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 = "0.54.0"
3+
const Version = "0.54.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>0.54.0</version>
54+
<version>0.54.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:0.54.0"
64+
implementation "com.svix:svix:0.54.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=0.54.0
2+
VERSION_NAME=0.54.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 = "0.54.0";
8+
public static final String VERSION = "0.54.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": "0.54.0",
3+
"version": "0.54.1",
44
"description": "Svix API client",
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
@@ -53,7 +53,7 @@ import * as base64 from "@stablelib/base64";
5353
import * as sha256 from "fast-sha256";
5454

5555
const WEBHOOK_TOLERANCE_IN_SECONDS = 5 * 60; // 5 minutes
56-
const VERSION = "0.54.0";
56+
const VERSION = "0.54.1";
5757

5858
class UserAgentMiddleware implements Middleware {
5959
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>0.54.0</version>
54+
<version>0.54.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:0.54.0"
64+
implementation "com.svix.kotlin:svix-kotlin:0.54.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=0.54.0
2+
VERSION_NAME=0.54.1
33

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

kotlin/lib/src/main/kotlin/SvixOptions.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package com.svix.kotlin
22

33
data class SvixOptions(val serverUrl: String = DEFAULT_URL) {
4-
private val version = "0.54.0"
4+
private val version = "0.54.1"
55

66
companion object {
77
const val DEFAULT_URL = "https://api.svix.com"

python/svix/__init__.py

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

40-
__version__ = "0.54.0"
40+
__version__ = "0.54.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 (0.54.0)
4+
svix (0.54.1)
55
typhoeus (~> 1.0, >= 1.0.1)
66

77
GEM

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 = "0.54.0"
4+
VERSION = "0.54.1"
55
end

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 = "0.54.0"
3+
version = "0.54.1"
44
license = "MIT"
55
description = "Svix webhooks server"
66

0 commit comments

Comments
 (0)