From 028a7b4a4f9904090a3a4a11c529a814a438ed32 Mon Sep 17 00:00:00 2001
From: mob-sakai <sakai861104@gmail.com>
Date: Tue, 7 May 2019 16:33:40 +0900
Subject: [PATCH 1/3] fix #51; Unity 2019.1.1f1 compile failed

---
 Assets/Coffee/UIExtensions/SoftMaskForUGUI/Scripts/SoftMask.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Assets/Coffee/UIExtensions/SoftMaskForUGUI/Scripts/SoftMask.cs b/Assets/Coffee/UIExtensions/SoftMaskForUGUI/Scripts/SoftMask.cs
index 7a817a8..fecb688 100755
--- a/Assets/Coffee/UIExtensions/SoftMaskForUGUI/Scripts/SoftMask.cs
+++ b/Assets/Coffee/UIExtensions/SoftMaskForUGUI/Scripts/SoftMask.cs
@@ -414,7 +414,7 @@ namespace Coffee.UIExtensions
 					Matrix4x4 nowsVP = cam.projectionMatrix * cam.worldToCameraMatrix;
 
 #if UNITY_2018_1_OR_NEWER
-					Matrix4x4 previousVP = cam.reviousViewProjectionMatrix;
+					Matrix4x4 previousVP = cam.previousViewProjectionMatrix;
 #else
 					Matrix4x4 previousVP = default(Matrix4x4);
 					int id = cam.GetInstanceID ();

From 92d6a6d3816c1f50056ceb8514af0e664b0cbe7f Mon Sep 17 00:00:00 2001
From: mob-sakai <sakai861104@gmail.com>
Date: Tue, 7 May 2019 18:56:45 +0900
Subject: [PATCH 2/3] Update readme

---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index fbbaf8b..bdf135c 100644
--- a/README.md
+++ b/README.md
@@ -88,7 +88,7 @@ Find the manifest.json file in the Packages folder of your project and edit it t
 ```js
 {
   "dependencies": {
-    "com.coffee.softmask-for-ugui": "https://github.com/mob-sakai/SoftMaskForUGUI.git#0.8.0",
+    "com.coffee.softmask-for-ugui": "https://github.com/mob-sakai/SoftMaskForUGUI.git#0.8.1",
     ...
   },
 }

From 2bbf80e417bd38e1c4ef3b0fe7bdb7934f434797 Mon Sep 17 00:00:00 2001
From: mob-sakai <sakai861104@gmail.com>
Date: Tue, 7 May 2019 19:27:04 +0900
Subject: [PATCH 3/3] update documents for v0.8.1

---
 Assets/Coffee/UIExtensions/SoftMaskForUGUI/CHANGELOG.md | 8 ++++++++
 Assets/Coffee/UIExtensions/SoftMaskForUGUI/README.md    | 2 +-
 Assets/Coffee/UIExtensions/SoftMaskForUGUI/package.json | 2 +-
 CHANGELOG.md                                            | 8 ++++++++
 package.json                                            | 2 +-
 5 files changed, 19 insertions(+), 3 deletions(-)

diff --git a/Assets/Coffee/UIExtensions/SoftMaskForUGUI/CHANGELOG.md b/Assets/Coffee/UIExtensions/SoftMaskForUGUI/CHANGELOG.md
index 1003f91..86b5c18 100644
--- a/Assets/Coffee/UIExtensions/SoftMaskForUGUI/CHANGELOG.md
+++ b/Assets/Coffee/UIExtensions/SoftMaskForUGUI/CHANGELOG.md
@@ -1,5 +1,13 @@
 # Changelog
 
+## [v0.8.1](https://github.com/mob-sakai/SoftMaskForUGUI/tree/v0.8.1) (2019-05-07)
+
+[Full Changelog](https://github.com/mob-sakai/SoftMaskForUGUI/compare/v0.8.0...v0.8.1)
+
+**Fixed bugs:**
+
+- Unity 2018.x compile failed [\#51](https://github.com/mob-sakai/SoftMaskForUGUI/issues/51)
+
 ## [v0.8.0](https://github.com/mob-sakai/SoftMaskForUGUI/tree/v0.8.0) (2019-05-01)
 
 [Full Changelog](https://github.com/mob-sakai/SoftMaskForUGUI/compare/v0.7.2...v0.8.0)
diff --git a/Assets/Coffee/UIExtensions/SoftMaskForUGUI/README.md b/Assets/Coffee/UIExtensions/SoftMaskForUGUI/README.md
index fbbaf8b..bdf135c 100644
--- a/Assets/Coffee/UIExtensions/SoftMaskForUGUI/README.md
+++ b/Assets/Coffee/UIExtensions/SoftMaskForUGUI/README.md
@@ -88,7 +88,7 @@ Find the manifest.json file in the Packages folder of your project and edit it t
 ```js
 {
   "dependencies": {
-    "com.coffee.softmask-for-ugui": "https://github.com/mob-sakai/SoftMaskForUGUI.git#0.8.0",
+    "com.coffee.softmask-for-ugui": "https://github.com/mob-sakai/SoftMaskForUGUI.git#0.8.1",
     ...
   },
 }
diff --git a/Assets/Coffee/UIExtensions/SoftMaskForUGUI/package.json b/Assets/Coffee/UIExtensions/SoftMaskForUGUI/package.json
index 451eaf9..70ede13 100644
--- a/Assets/Coffee/UIExtensions/SoftMaskForUGUI/package.json
+++ b/Assets/Coffee/UIExtensions/SoftMaskForUGUI/package.json
@@ -2,7 +2,7 @@
 	"name": "com.coffee.softmask-for-ugui",
 	"displayName": "Soft Mask For uGUI",
 	"description": "SoftMask is a smooth masking component for uGUI elements in Unity.\nBy using SoftMask instead of default Mask, rounded edges of UI elements can be expressed beautifully.",
-	"version": "0.8.0",
+	"version": "0.8.1",
 	"unity": "2017.1",
 	"license": "MIT",
 	"repository": {
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1003f91..86b5c18 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
 # Changelog
 
+## [v0.8.1](https://github.com/mob-sakai/SoftMaskForUGUI/tree/v0.8.1) (2019-05-07)
+
+[Full Changelog](https://github.com/mob-sakai/SoftMaskForUGUI/compare/v0.8.0...v0.8.1)
+
+**Fixed bugs:**
+
+- Unity 2018.x compile failed [\#51](https://github.com/mob-sakai/SoftMaskForUGUI/issues/51)
+
 ## [v0.8.0](https://github.com/mob-sakai/SoftMaskForUGUI/tree/v0.8.0) (2019-05-01)
 
 [Full Changelog](https://github.com/mob-sakai/SoftMaskForUGUI/compare/v0.7.2...v0.8.0)
diff --git a/package.json b/package.json
index 451eaf9..70ede13 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
 	"name": "com.coffee.softmask-for-ugui",
 	"displayName": "Soft Mask For uGUI",
 	"description": "SoftMask is a smooth masking component for uGUI elements in Unity.\nBy using SoftMask instead of default Mask, rounded edges of UI elements can be expressed beautifully.",
-	"version": "0.8.0",
+	"version": "0.8.1",
 	"unity": "2017.1",
 	"license": "MIT",
 	"repository": {