diff --git a/ChangeLog.md b/ChangeLog.md index bcdc624c..d24bab66 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [4.4.4] - 2021-10-28 +### Fixed +- Build compiler error about missing variable (#265) + ## [4.4.3] - 2021-10-27 ### Fixed - Release build only compiler errors diff --git a/Runtime/Scripts/Export/Constants.cs b/Runtime/Scripts/Export/Constants.cs index b7f4c1f8..8c54d0da 100644 --- a/Runtime/Scripts/Export/Constants.cs +++ b/Runtime/Scripts/Export/Constants.cs @@ -17,6 +17,6 @@ namespace GLTFast.Export { static class Constants { - public const string version = "4.4.3"; + public const string version = "4.4.4"; } } diff --git a/package.json b/package.json index 4fe91155..fccd083b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "com.atteneder.gltfast", - "version": "4.4.3", + "version": "4.4.4", "displayName": "glTFast", "description": "Use glTFast to import and export glTF 3D files efficiently at runtime or in the Editor", "unity": "2019.4",