File tree 16 files changed +20
-17
lines changed
lib/src/main/java/com/svix
16 files changed +20
-17
lines changed Original file line number Diff line number Diff line change 1
- 0.54.0
1
+ 0.54.1
Original file line number Diff line number Diff line change 3
3
## Next
4
4
*
5
5
6
+ ## Version 0.54.1
7
+ * Server: fix release CI
8
+
6
9
## Version 0.54.0
7
10
* Libs: add retry and request-id headers for easier debugging.
8
11
* Server: add more release targets (macOS and aarch64).
Original file line number Diff line number Diff line change 3
3
<PropertyGroup >
4
4
<TargetFramework >net5.0</TargetFramework >
5
5
<PackageId >Svix</PackageId >
6
- <Version >0.54.0 </Version >
6
+ <Version >0.54.1 </Version >
7
7
<Authors >Svix</Authors >
8
8
<Company >Svix</Company >
9
9
<GeneratePackageOnBuild >true</GeneratePackageOnBuild >
Original file line number Diff line number Diff line change 1
1
package version
2
2
3
- const Version = "0.54.0 "
3
+ const Version = "0.54.1 "
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ Add this dependency to your project's POM:
51
51
<dependency >
52
52
<groupId >com.svix</groupId >
53
53
<artifactId >svix</artifactId >
54
- <version >0.54.0 </version >
54
+ <version >0.54.1 </version >
55
55
<scope >compile</scope >
56
56
</dependency >
57
57
```
@@ -61,7 +61,7 @@ Add this dependency to your project's POM:
61
61
Add this dependency to your project's build file:
62
62
63
63
``` groovy
64
- implementation "com.svix:svix:0.54.0 "
64
+ implementation "com.svix:svix:0.54.1 "
65
65
```
66
66
67
67
# Development
Original file line number Diff line number Diff line change 1
1
GROUP =com.svix
2
- VERSION_NAME =0.54.0
2
+ VERSION_NAME =0.54.1
3
3
4
4
POM_URL =https://github.com/svix/svix-webhooks
5
5
POM_SCM_URL [email protected] :svix/svix-webhooks.git
Original file line number Diff line number Diff line change 5
5
import com .svix .internal .auth .HttpBearerAuth ;
6
6
7
7
public final class Svix {
8
- public static final String VERSION = "0.54.0 " ;
8
+ public static final String VERSION = "0.54.1 " ;
9
9
private final Application application ;
10
10
private final Authentication authentication ;
11
11
private final Endpoint endpoint ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " svix" ,
3
- "version" : " 0.54.0 " ,
3
+ "version" : " 0.54.1 " ,
4
4
"description" : " Svix API client" ,
5
5
"author" : " svix" ,
6
6
"repository" : " https://github.com/svix/svix-libs" ,
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ import * as base64 from "@stablelib/base64";
53
53
import * as sha256 from "fast-sha256" ;
54
54
55
55
const WEBHOOK_TOLERANCE_IN_SECONDS = 5 * 60 ; // 5 minutes
56
- const VERSION = "0.54.0 " ;
56
+ const VERSION = "0.54.1 " ;
57
57
58
58
class UserAgentMiddleware implements Middleware {
59
59
public pre ( context : RequestContext ) : Promise < RequestContext > {
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ Add this dependency to your project's POM:
51
51
<dependency >
52
52
<groupId >com.svix.kotlin</groupId >
53
53
<artifactId >svix-kotlin</artifactId >
54
- <version >0.54.0 </version >
54
+ <version >0.54.1 </version >
55
55
<scope >compile</scope >
56
56
</dependency >
57
57
```
@@ -61,7 +61,7 @@ Add this dependency to your project's POM:
61
61
Add this dependency to your project's build file:
62
62
63
63
``` groovy
64
- implementation "com.svix.kotlin:svix-kotlin:0.54.0 "
64
+ implementation "com.svix.kotlin:svix-kotlin:0.54.1 "
65
65
```
66
66
67
67
# Development
Original file line number Diff line number Diff line change 1
1
GROUP =com.svix.kotlin
2
- VERSION_NAME =0.54.0
2
+ VERSION_NAME =0.54.1
3
3
4
4
POM_URL =https://github.com/svix/svix-webhooks
5
5
POM_SCM_URL [email protected] :svix/svix-webhooks.git
Original file line number Diff line number Diff line change 1
1
package com.svix.kotlin
2
2
3
3
data class SvixOptions (val serverUrl : String = DEFAULT_URL ) {
4
- private val version = " 0.54.0 "
4
+ private val version = " 0.54.1 "
5
5
6
6
companion object {
7
7
const val DEFAULT_URL = " https://api.svix.com"
Original file line number Diff line number Diff line change 37
37
"WebhookVerificationError" ,
38
38
]
39
39
40
- __version__ = "0.54.0 "
40
+ __version__ = "0.54.1 "
Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: .
3
3
specs:
4
- svix (0.54.0 )
4
+ svix (0.54.1 )
5
5
typhoeus (~> 1.0 , >= 1.0.1 )
6
6
7
7
GEM
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
module Svix
4
- VERSION = "0.54.0 "
4
+ VERSION = "0.54.1 "
5
5
end
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " svix-server"
3
- version = " 0.54.0 "
3
+ version = " 0.54.1 "
4
4
license = " MIT"
5
5
description = " Svix webhooks server"
6
6
You can’t perform that action at this time.
0 commit comments