From 2773fd2d3b332d72aa11fa2aa8aa44601626164b Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 9 Apr 2024 19:03:26 +0000 Subject: [PATCH] chore(release): 2.1.0 [skip ci] # [2.1.0](https://github.com/James-Frowen/SimpleWebTransport/compare/v2.0.1...v2.1.0) (2024-04-09) ### Features * adding option to allow ssl errors. Useful when testing with self signed cert ([d956089](https://github.com/James-Frowen/SimpleWebTransport/commit/d9560893c1f8ac2f38a3dd1baf462dea7b42aaff)) --- source/CHANGELOG.md | 7 +++++++ source/Runtime/AssemblyInfo.cs | 2 +- source/package.json | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/source/CHANGELOG.md b/source/CHANGELOG.md index 21c6667..bf254f0 100644 --- a/source/CHANGELOG.md +++ b/source/CHANGELOG.md @@ -1,3 +1,10 @@ +# [2.1.0](https://github.com/James-Frowen/SimpleWebTransport/compare/v2.0.1...v2.1.0) (2024-04-09) + + +### Features + +* adding option to allow ssl errors. Useful when testing with self signed cert ([d956089](https://github.com/James-Frowen/SimpleWebTransport/commit/d9560893c1f8ac2f38a3dd1baf462dea7b42aaff)) + ## [2.0.1](https://github.com/James-Frowen/SimpleWebTransport/compare/v2.0.0...v2.0.1) (2024-03-16) diff --git a/source/Runtime/AssemblyInfo.cs b/source/Runtime/AssemblyInfo.cs index 36502e9..0e84458 100644 --- a/source/Runtime/AssemblyInfo.cs +++ b/source/Runtime/AssemblyInfo.cs @@ -1,7 +1,7 @@ using System.Reflection; using System.Runtime.CompilerServices; -[assembly: AssemblyVersion("2.0.1")] +[assembly: AssemblyVersion("2.1.0")] [assembly: InternalsVisibleTo("SimpleWebTransport.Tests.Runtime")] [assembly: InternalsVisibleTo("SimpleWebTransport.Tests.Editor")] diff --git a/source/package.json b/source/package.json index c9ca899..4bcefcb 100644 --- a/source/package.json +++ b/source/package.json @@ -1,7 +1,7 @@ { "name": "com.james-frowen.simplewebtransport", "displayName": "Simple Web Transport", - "version": "2.0.1", + "version": "2.1.0", "unity": "2021.3", "description": "Low level transport for Unity using the websocket Protocol. Includes a Websocket server, standalone client, and a WebGL client so that both your Server and Client can be build with Unity.", "author": "James Frowen",