Skip to content

Commit 3bc2a29

Browse files
authored
Bump version and update changelog (#1384)
## What's Changed * Libs: update spec by @svix-onelson in #1379 **Full Changelog**: v1.27.0...v1.28.0
1 parent 190870a commit 3bc2a29

File tree

19 files changed

+26
-23
lines changed

19 files changed

+26
-23
lines changed

Diff for: .version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.27.0
1+
1.28.0

Diff for: ChangeLog.md

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

6+
## Version 1.28.0
7+
* Libs: Update OpenAPI spec
8+
69
## Version 1.27.0
710
* Libs/Python: add missing 'get_stats' function
811

Diff for: bridge/Cargo.lock

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

Diff for: 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.27.0"
3+
version = "1.28.0"
44
edition = "2021"
55
publish = false
66

Diff for: csharp/Svix/Svix.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>net5.0;netstandard2.0</TargetFrameworks>
55
<PackageId>Svix</PackageId>
6-
<Version>1.27.0</Version>
6+
<Version>1.28.0</Version>
77
<Authors>Svix</Authors>
88
<Company>Svix</Company>
99
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>

Diff for: 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.27.0"
3+
const Version = "1.28.0"

Diff for: 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.27.0</version>
54+
<version>1.28.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.27.0"
64+
implementation "com.svix:svix:1.28.0"
6565
```
6666

6767
# Development

Diff for: 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.27.0
2+
VERSION_NAME=1.28.0
33

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

Diff for: 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.27.0";
8+
public static final String VERSION = "1.28.0";
99
private final Application application;
1010
private final Authentication authentication;
1111
private final Endpoint endpoint;

Diff for: javascript/package.json

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

Diff for: javascript/src/index.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ import * as base64 from "@stablelib/base64";
7777
import * as sha256 from "fast-sha256";
7878

7979
const WEBHOOK_TOLERANCE_IN_SECONDS = 5 * 60; // 5 minutes
80-
const VERSION = "1.27.0";
80+
const VERSION = "1.28.0";
8181

8282
class UserAgentMiddleware implements Middleware {
8383
public pre(context: RequestContext): Promise<RequestContext> {
@@ -402,7 +402,7 @@ class Endpoint {
402402
}
403403

404404
/**
405-
* @deprecated Since version 1.27.0. Use `headersUpdate` instead.
405+
* @deprecated Since version 1.28.0. Use `headersUpdate` instead.
406406
*/
407407
public updateHeaders(
408408
appId: string,
@@ -429,7 +429,7 @@ class Endpoint {
429429
}
430430

431431
/**
432-
* @deprecated Since version 1.27.0. Use `headersPatch` instead.
432+
* @deprecated Since version 1.28.0. Use `headersPatch` instead.
433433
*/
434434
public patchHeaders(
435435
appId: string,

Diff for: 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.27.0</version>
54+
<version>1.28.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.kotlin:svix-kotlin:1.27.0"
64+
implementation "com.svix.kotlin:svix-kotlin:1.28.0"
6565
```
6666

6767
# Development

Diff for: 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.27.0
2+
VERSION_NAME=1.28.0
33

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

Diff for: 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.27.0"
40+
__version__ = "1.28.0"

Diff for: ruby/Gemfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
PATH
22
remote: .
33
specs:
4-
svix (1.27.0)
4+
svix (1.28.0)
55
typhoeus (~> 1.0, >= 1.0.1)
66

77
GEM
88
remote: https://rubygems.org/
99
specs:
1010
diff-lcs (1.4.4)
1111
ethon (0.14.0)
12-
ffi (>= 1.27.0)
12+
ffi (>= 1.28.0)
1313
ffi (1.15.1)
1414
rake (13.0.6)
1515
rspec (3.10.0)

Diff for: 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.27.0"
4+
VERSION = "1.28.0"
55
end

Diff for: 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.27.0"
3+
version = "1.28.0"
44
authors = ["Svix Inc. <[email protected]>"]
55
edition = "2021"
66
description = "Svix webhooks API client and webhook verification library"

Diff for: server/Cargo.lock

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

Diff for: 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.27.0"
3+
version = "1.28.0"
44
license = "MIT"
55
description = "Svix webhooks server"
66

0 commit comments

Comments
 (0)