Skip to content

Commit

Permalink
Bump version & update changelog (#212)
Browse files Browse the repository at this point in the history
  • Loading branch information
svix-frank authored Jan 25, 2022
1 parent b1dce28 commit 898b1c6
Show file tree
Hide file tree
Showing 15 changed files with 19 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.43.0
0.43.1
3 changes: 3 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## Version 0.43.1
* Java & Kotlin: Minor internal fix to restore version number parity with other libs

## Version 0.43.0
* Python: Allow explicit `None` to be passed for optional fields ❌

Expand Down
2 changes: 1 addition & 1 deletion csharp/Svix/Svix.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<PackageId>Svix</PackageId>
<Version>0.43.0</Version>
<Version>0.43.1</Version>
<Authors>Svix</Authors>
<Company>Svix</Company>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
Expand Down
2 changes: 1 addition & 1 deletion go/internal/version/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package version

const Version = "0.43.0"
const Version = "0.43.1"
4 changes: 2 additions & 2 deletions java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.svix</groupId>
<artifactId>svix</artifactId>
<version>0.43.0</version>
<version>0.43.1</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -28,7 +28,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
implementation "com.svix:svix:0.43.0"
implementation "com.svix:svix:0.43.1"
```


Expand Down
2 changes: 1 addition & 1 deletion java/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.svix
VERSION_NAME=0.43.0
VERSION_NAME=0.43.1

POM_URL=https://github.com/svix/svix-libs
POM_SCM_URL=git@github.com:svix/svix-libs.git
Expand Down
2 changes: 1 addition & 1 deletion java/lib/src/main/java/com/svix/Svix.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import com.svix.internal.auth.HttpBearerAuth;

public final class Svix {
public static final String VERSION = "0.43.0";
public static final String VERSION = "0.43.1";
private final Application application;
private final Authentication authentication;
private final Endpoint endpoint;
Expand Down
2 changes: 1 addition & 1 deletion javascript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "svix",
"version": "0.43.0",
"version": "0.43.1",
"description": "Svix API client",
"author": "svix",
"repository": "https://github.com/svix/svix-libs",
Expand Down
2 changes: 1 addition & 1 deletion javascript/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ import * as base64 from "@stablelib/base64";
import * as sha256 from "fast-sha256";

const WEBHOOK_TOLERANCE_IN_SECONDS = 5 * 60; // 5 minutes
const VERSION = "0.43.0";
const VERSION = "0.43.1";

class UserAgentMiddleware implements Middleware {
public pre(context: RequestContext): Promise<RequestContext> {
Expand Down
4 changes: 2 additions & 2 deletions kotlin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.svix.kotlin</groupId>
<artifactId>svix-kotlin</artifactId>
<version>0.43.0</version>
<version>0.43.1</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -28,7 +28,7 @@ Add this dependency to your project's POM:
Add this dependency to your project's build file:

```groovy
implementation "com.svix.kotlin:svix-kotlin:0.43.0"
implementation "com.svix.kotlin:svix-kotlin:0.43.1"
```


Expand Down
2 changes: 1 addition & 1 deletion kotlin/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.svix.kotlin
VERSION_NAME=0.43.0
VERSION_NAME=0.43.1

POM_URL=https://github.com/svix/svix-libs
POM_SCM_URL=git@github.com:svix/svix-libs.git
Expand Down
2 changes: 1 addition & 1 deletion kotlin/lib/src/main/kotlin/SvixOptions.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.svix.kotlin

data class SvixOptions(val serverUrl: String = DEFAULT_URL) {
private val version = "0.43.0"
private val version = "0.43.1"

companion object {
const val DEFAULT_URL = "https://api.svix.com"
Expand Down
2 changes: 1 addition & 1 deletion python/svix/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
"WebhookVerificationError",
]

__version__ = "0.43.0"
__version__ = "0.43.1"
2 changes: 1 addition & 1 deletion ruby/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
svix (0.43.0)
svix (0.43.1)
typhoeus (~> 1.0, >= 1.0.1)

GEM
Expand Down
2 changes: 1 addition & 1 deletion ruby/lib/svix/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Svix
VERSION = "0.43.0"
VERSION = "0.43.1"
end

0 comments on commit 898b1c6

Please sign in to comment.