Skip to content

Commit 82c78bd

Browse files
committed
Prep release v1.56.0
1 parent d8e40f4 commit 82c78bd

File tree

22 files changed

+31
-25
lines changed

22 files changed

+31
-25
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.45.1
1+
1.56.0

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ChangeLog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## Version 1.56.0
4+
* Skipping versions: we had an issue with our CI that created duplicated Go
5+
library releases and forced us to bump the version across the libs and the
6+
server. Apologies for any inconvenience caused.
7+
* Libs/Go: retracts several versions which were tagged prematurely. Apologies!
8+
39
## Version 1.45.1
410
* CLI: Rename the binary back from `svix-cli` to `svix`
511
* Libs/Java: Stop sharing one `ApiClient` between all `Svix` instances. Fixes a bug where multiple

bridge/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bridge/svix-bridge/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "svix-bridge"
3-
version = "1.45.1"
3+
version = "1.56.0"
44
edition = "2021"
55
publish = false
66

csharp/Svix/Svix.csproj

Lines changed: 1 addition & 1 deletion
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.1</Version>
6+
<Version>1.56.0</Version>
77
<Authors>Svix</Authors>
88
<Company>Svix</Company>
99
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>

go/internal/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package version
22

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

java/README.md

Lines changed: 2 additions & 2 deletions
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.1</version>
54+
<version>1.56.0</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.1"
64+
implementation "com.svix:svix:1.56.0"
6565
```
6666

6767
# Development

java/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.svix
2-
VERSION_NAME=1.45.1
2+
VERSION_NAME=1.56.0
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

Lines changed: 1 addition & 1 deletion
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.1";
8+
public static final String VERSION = "1.56.0";
99
private final Application application;
1010
private final Authentication authentication;
1111
private final Endpoint endpoint;

0 commit comments

Comments
 (0)