From e6c555d3cf43cfbd4eed1d0491636d4bf10af5de Mon Sep 17 00:00:00 2001 From: Frank Date: Tue, 1 Mar 2022 16:13:03 -0500 Subject: [PATCH] Bump version & update changelog (#269) --- .version | 2 +- ChangeLog.md | 4 ++++ csharp/Svix/Svix.csproj | 2 +- go/internal/version/version.go | 2 +- java/README.md | 4 ++-- java/gradle.properties | 2 +- java/lib/src/main/java/com/svix/Svix.java | 2 +- javascript/package.json | 2 +- javascript/src/index.ts | 4 ++-- kotlin/README.md | 4 ++-- kotlin/gradle.properties | 2 +- kotlin/lib/src/main/kotlin/SvixOptions.kt | 2 +- python/svix/__init__.py | 2 +- ruby/Gemfile.lock | 2 +- ruby/lib/svix/version.rb | 2 +- server/svix-server/Cargo.toml | 2 +- 16 files changed, 22 insertions(+), 18 deletions(-) diff --git a/.version b/.version index fbaaafa00..84767f216 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.49.0 \ No newline at end of file +0.50.0 \ No newline at end of file diff --git a/ChangeLog.md b/ChangeLog.md index 77359e8a5..9b6078310 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,9 @@ # Changelog +## Version 0.50.0 +* Server: Set custom endpoint headers when sending via worker +* Libs: Add support for filtering by StatusCodeClass in attempts API + ## Version 0.49.0 * Libs: Add support for reverse iteration (prev_iterator) & after param in list commands ⬅️ * Server: Add support for adding & managing custom Endpoint Headers 🆕 diff --git a/csharp/Svix/Svix.csproj b/csharp/Svix/Svix.csproj index 29c9ec9df..871ad81b8 100644 --- a/csharp/Svix/Svix.csproj +++ b/csharp/Svix/Svix.csproj @@ -3,7 +3,7 @@ net5.0 Svix - 0.49.0 + 0.50.0 Svix Svix true diff --git a/go/internal/version/version.go b/go/internal/version/version.go index bb68131a5..a4d56ec33 100644 --- a/go/internal/version/version.go +++ b/go/internal/version/version.go @@ -1,3 +1,3 @@ package version -const Version = "0.49.0" +const Version = "0.50.0" diff --git a/java/README.md b/java/README.md index f8955b805..b2e4ca5d2 100644 --- a/java/README.md +++ b/java/README.md @@ -51,7 +51,7 @@ Add this dependency to your project's POM: com.svix svix - 0.49.0 + 0.50.0 compile ``` @@ -61,7 +61,7 @@ Add this dependency to your project's POM: Add this dependency to your project's build file: ```groovy -implementation "com.svix:svix:0.49.0" +implementation "com.svix:svix:0.50.0" ``` # Development diff --git a/java/gradle.properties b/java/gradle.properties index cc327aecd..383262a8b 100644 --- a/java/gradle.properties +++ b/java/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix -VERSION_NAME=0.49.0 +VERSION_NAME=0.50.0 POM_URL=https://github.com/svix/svix-webhooks POM_SCM_URL=git@github.com:svix/svix-webhooks.git diff --git a/java/lib/src/main/java/com/svix/Svix.java b/java/lib/src/main/java/com/svix/Svix.java index f3f44606e..8ff04b4e1 100644 --- a/java/lib/src/main/java/com/svix/Svix.java +++ b/java/lib/src/main/java/com/svix/Svix.java @@ -5,7 +5,7 @@ import com.svix.internal.auth.HttpBearerAuth; public final class Svix { - public static final String VERSION = "0.49.0"; + public static final String VERSION = "0.50.0"; private final Application application; private final Authentication authentication; private final Endpoint endpoint; diff --git a/javascript/package.json b/javascript/package.json index fbab60597..86e9b41de 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "svix", - "version": "0.49.0", + "version": "0.50.0", "description": "Svix API client", "author": "svix", "repository": "https://github.com/svix/svix-libs", diff --git a/javascript/src/index.ts b/javascript/src/index.ts index b0f891c3e..7bac3d9fc 100644 --- a/javascript/src/index.ts +++ b/javascript/src/index.ts @@ -53,7 +53,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.49.0"; +const VERSION = "0.50.0"; class UserAgentMiddleware implements Middleware { public pre(context: RequestContext): Promise { @@ -414,7 +414,7 @@ class MessageAttempt { } /** - * @deprecated Since version 0.49.0. Use listByMsg or listByEndpoint instead. + * @deprecated Since version 0.50.0. Use listByMsg or listByEndpoint instead. */ public list( appId: string, diff --git a/kotlin/README.md b/kotlin/README.md index bdfbb0338..3890434a6 100644 --- a/kotlin/README.md +++ b/kotlin/README.md @@ -51,7 +51,7 @@ Add this dependency to your project's POM: com.svix.kotlin svix-kotlin - 0.49.0 + 0.50.0 compile ``` @@ -61,7 +61,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.49.0" +implementation "com.svix.kotlin:svix-kotlin:0.50.0" ``` # Development diff --git a/kotlin/gradle.properties b/kotlin/gradle.properties index 34300f70c..de036fb55 100644 --- a/kotlin/gradle.properties +++ b/kotlin/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.svix.kotlin -VERSION_NAME=0.49.0 +VERSION_NAME=0.50.0 POM_URL=https://github.com/svix/svix-webhooks POM_SCM_URL=git@github.com:svix/svix-webhooks.git diff --git a/kotlin/lib/src/main/kotlin/SvixOptions.kt b/kotlin/lib/src/main/kotlin/SvixOptions.kt index ee59b0a94..95fbbef24 100644 --- a/kotlin/lib/src/main/kotlin/SvixOptions.kt +++ b/kotlin/lib/src/main/kotlin/SvixOptions.kt @@ -1,7 +1,7 @@ package com.svix.kotlin data class SvixOptions(val serverUrl: String = DEFAULT_URL) { - private val version = "0.49.0" + private val version = "0.50.0" companion object { const val DEFAULT_URL = "https://api.svix.com" diff --git a/python/svix/__init__.py b/python/svix/__init__.py index 944eb95a5..d44bc55e5 100644 --- a/python/svix/__init__.py +++ b/python/svix/__init__.py @@ -35,4 +35,4 @@ "WebhookVerificationError", ] -__version__ = "0.49.0" +__version__ = "0.50.0" diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock index 46b58eb00..038eab77a 100644 --- a/ruby/Gemfile.lock +++ b/ruby/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - svix (0.49.0) + svix (0.50.0) typhoeus (~> 1.0, >= 1.0.1) GEM diff --git a/ruby/lib/svix/version.rb b/ruby/lib/svix/version.rb index 96965b2cc..fb6b88704 100644 --- a/ruby/lib/svix/version.rb +++ b/ruby/lib/svix/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Svix - VERSION = "0.49.0" + VERSION = "0.50.0" end diff --git a/server/svix-server/Cargo.toml b/server/svix-server/Cargo.toml index 2745c732d..782f65216 100644 --- a/server/svix-server/Cargo.toml +++ b/server/svix-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "svix-server" -version = "0.49.0" +version = "0.50.0" license = "MIT" description = "Svix webhooks server"