Skip to content

Commit ead4cbd

Browse files
authored
Bump version and update changelog. (#972)
1 parent a1fd2b5 commit ead4cbd

File tree

17 files changed

+24
-19
lines changed

17 files changed

+24
-19
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.12
1+
1.5.0

ChangeLog.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# Changelog
22

33
## Next
4-
*
4+
*
5+
6+
## Version 1.5.0
7+
* Server: update OpenSSL dep and fix an incredibly slow memory leak.
8+
* Libs/Go: support passing `WithContent` to `List Attepmted Messages`
9+
* Libs/Python: fix regression in Python library (causing some functions not to work).
510

611
## Version 1.4.12
712
* Sync OSS package version with our internal version.

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
<TargetFrameworks>net5.0;netstandard2.0</TargetFrameworks>
55
<PackageId>Svix</PackageId>
6-
<Version>1.4.12</Version>
6+
<Version>1.5.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.4.12"
3+
const Version = "1.5.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.4.12</version>
54+
<version>1.5.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.4.12"
64+
implementation "com.svix:svix:1.5.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.4.12
2+
VERSION_NAME=1.5.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.4.12";
8+
public static final String VERSION = "1.5.0";
99
private final Application application;
1010
private final Authentication authentication;
1111
private final Endpoint endpoint;

javascript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "svix",
3-
"version": "1.4.12",
3+
"version": "1.5.0",
44
"description": "Svix API client",
55
"author": "svix",
66
"repository": "https://github.com/svix/svix-libs",

javascript/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ import * as base64 from "@stablelib/base64";
6767
import * as sha256 from "fast-sha256";
6868

6969
const WEBHOOK_TOLERANCE_IN_SECONDS = 5 * 60; // 5 minutes
70-
const VERSION = "1.4.12";
70+
const VERSION = "1.5.0";
7171

7272
class UserAgentMiddleware implements Middleware {
7373
public pre(context: RequestContext): Promise<RequestContext> {

kotlin/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.kotlin</groupId>
5353
<artifactId>svix-kotlin</artifactId>
54-
<version>1.4.12</version>
54+
<version>1.5.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.4.12"
64+
implementation "com.svix.kotlin:svix-kotlin:1.5.0"
6565
```
6666

6767
# Development

0 commit comments

Comments
 (0)