diff --git a/CHANGELOG.md b/CHANGELOG.md index 57b174e5..ea29b33d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,28 @@ πŸ’… = Polish πŸš€ = New features +# 4.4.6 (July 22, 2023) + +## πŸ› Bug fixes +- [#359](https://github.com/unity-atoms/unity-atoms/pull/359) Vector2/3 reference not properly showing ([@soraphis](https://github.com/soraphis)) +- [#369](https://github.com/unity-atoms/unity-atoms/pull/369) Removed OnDisable method, to fix #349 ([@soraphis](https://github.com/soraphis)) +- [#364](https://github.com/unity-atoms/unity-atoms/pull/364) Fix: #363 enum property did not return int value, but index ([@soraphis](https://github.com/soraphis)) +- [#362](https://github.com/unity-atoms/unity-atoms/pull/362) Fix: corrected IEquatable implementation check ([@soraphis](https://github.com/soraphis)) +- [#371](https://github.com/unity-atoms/unity-atoms/pull/371) Prevent null reference exceptions in editor when using non-serializable types ([@soraphis](https://github.com/soraphis)) +- [#373](https://github.com/unity-atoms/unity-atoms/pull/373) Call base impl of ImplSpecificSetup() in FSM instancer ([@AdamRamberg](https://github.com/AdamRamberg)) +- [#386](https://github.com/unity-atoms/unity-atoms/pull/386) FiniteStateMachineMonoHook unload fix ([@soraphis](https://github.com/soraphis)) +- [#389](https://github.com/unity-atoms/unity-atoms/pull/389) Fixes syncgameobjecttolist adding object multiple times ([@soraphis](https://github.com/soraphis)) +- [#409](https://github.com/unity-atoms/unity-atoms/pull/409) FIX: Using TextField in AssetGenerator does not work as expected ([@soraphis](https://github.com/soraphis)) +- [#403](https://github.com/unity-atoms/unity-atoms/pull/403) fix: Event Replay Buffer not cleared when domain reload disabled ([@soraphis](https://github.com/soraphis)) + +## πŸ“ Documentation +- [#413](https://github.com/unity-atoms/unity-atoms/pull/413) Adding Documentation ([@soraphis](https://github.com/soraphis) and [@AdamRamberg](https://github.com/AdamRamberg)) +- [#411](https://github.com/unity-atoms/unity-atoms/pull/411) Remove generated API docs ([@AdamRamberg](https://github.com/AdamRamberg)) + +## πŸ’… Polish +- [994026f](https://github.com/unity-atoms/unity-atoms/commit/994026fb7e74f0436c188f8e9c4e8050a4b2e639) Added input-system shield to README ([@AdamRamberg](https://github.com/AdamRamberg)) +- [#317](https://github.com/unity-atoms/unity-atoms/pull/317) Set event name suggestion on Variable Changed event creation ([@ThimoDEV](https://github.com/ThimoDEV)) + # 4.4.5 (May 9, 2022) ## πŸ› Bug fixes diff --git a/Packages/BaseAtoms/package.json b/Packages/BaseAtoms/package.json index afae5f64..69cea82e 100644 --- a/Packages/BaseAtoms/package.json +++ b/Packages/BaseAtoms/package.json @@ -1,7 +1,7 @@ { "name": "com.unity-atoms.unity-atoms-base-atoms", "displayName": "Unity Atoms Base Atoms", - "version": "4.4.5", + "version": "4.4.6", "unity": "2018.3", "description": "Base set of Atoms based on Unity Atoms Core.", "keywords": [ @@ -22,6 +22,6 @@ "dependencies": { "com.unity.modules.physics": "1.0.0", "com.unity.modules.physics2d": "1.0.0", - "com.unity-atoms.unity-atoms-core": "4.4.5" + "com.unity-atoms.unity-atoms-core": "4.4.6" } } diff --git a/Packages/Core/package.json b/Packages/Core/package.json index e0389d62..8fd30530 100644 --- a/Packages/Core/package.json +++ b/Packages/Core/package.json @@ -1,7 +1,7 @@ { "name": "com.unity-atoms.unity-atoms-core", "displayName": "Unity Atoms Core", - "version": "4.4.5", + "version": "4.4.6", "unity": "2018.3", "description": "Tiny modular pieces utilizing the power of Scriptable Objects", "keywords": [ diff --git a/Packages/FSM/package.json b/Packages/FSM/package.json index 59fba9ff..81166cc5 100644 --- a/Packages/FSM/package.json +++ b/Packages/FSM/package.json @@ -1,7 +1,7 @@ { "name": "com.unity-atoms.unity-atoms-fsm", "displayName": "Unity Atoms FSM", - "version": "4.4.5", + "version": "4.4.6", "unity": "2018.3", "description": "Simple FSM using Unity Atoms.", "keywords": [ @@ -20,7 +20,7 @@ "/Documentation.meta" ], "dependencies": { - "com.unity-atoms.unity-atoms-core": "4.4.5", - "com.unity-atoms.unity-atoms-base-atoms": "4.4.5" + "com.unity-atoms.unity-atoms-core": "4.4.6", + "com.unity-atoms.unity-atoms-base-atoms": "4.4.6" } } diff --git a/Packages/InputSystem/package.json b/Packages/InputSystem/package.json index 0e6387da..ede9ee2e 100644 --- a/Packages/InputSystem/package.json +++ b/Packages/InputSystem/package.json @@ -1,7 +1,7 @@ { "name": "com.unity-atoms.unity-atoms-input-system", "displayName": "Unity Atoms Input System", - "version": "4.4.5", + "version": "4.4.6", "unity": "2018.3", "description": "Unity Atoms with Unity's Input System.", "keywords": [ @@ -18,8 +18,8 @@ "/Editor.meta" ], "dependencies": { - "com.unity-atoms.unity-atoms-core": "4.4.5", - "com.unity-atoms.unity-atoms-base-atoms": "4.4.5", + "com.unity-atoms.unity-atoms-core": "4.4.6", + "com.unity-atoms.unity-atoms-base-atoms": "4.4.6", "com.unity.inputsystem": "1.0.1" } } diff --git a/Packages/Mobile/package.json b/Packages/Mobile/package.json index 0da90c7d..bf8cd6b1 100644 --- a/Packages/Mobile/package.json +++ b/Packages/Mobile/package.json @@ -1,7 +1,7 @@ { "name": "com.unity-atoms.unity-atoms-mobile", "displayName": "Unity Atoms Mobile", - "version": "4.4.5", + "version": "4.4.6", "unity": "2018.3", "description": "Unity Atoms for your mobile project.", "keywords": [ @@ -20,7 +20,7 @@ "/Documentation.meta" ], "dependencies": { - "com.unity-atoms.unity-atoms-core": "4.4.5", - "com.unity-atoms.unity-atoms-base-atoms": "4.4.5" + "com.unity-atoms.unity-atoms-core": "4.4.6", + "com.unity-atoms.unity-atoms-base-atoms": "4.4.6" } } diff --git a/Packages/MonoHooks/package.json b/Packages/MonoHooks/package.json index 473e7eb4..21352206 100644 --- a/Packages/MonoHooks/package.json +++ b/Packages/MonoHooks/package.json @@ -1,7 +1,7 @@ { "name": "com.unity-atoms.unity-atoms-mono-hooks", "displayName": "Unity Atoms Mono Hooks", - "version": "4.4.5", + "version": "4.4.6", "unity": "2018.3", "description": "Hook into Unity's lifecycle methods with Atom Events.", "keywords": [ @@ -21,7 +21,7 @@ ], "dependencies": { "com.unity.ugui": "1.0.0", - "com.unity-atoms.unity-atoms-core": "4.4.5", - "com.unity-atoms.unity-atoms-base-atoms": "4.4.5" + "com.unity-atoms.unity-atoms-core": "4.4.6", + "com.unity-atoms.unity-atoms-base-atoms": "4.4.6" } } diff --git a/Packages/SceneMgmt/package.json b/Packages/SceneMgmt/package.json index 71633200..52b32d46 100644 --- a/Packages/SceneMgmt/package.json +++ b/Packages/SceneMgmt/package.json @@ -1,7 +1,7 @@ { "name": "com.unity-atoms.unity-atoms-scene-mgmt", "displayName": "Unity Atoms Scene Mgmt", - "version": "4.4.5", + "version": "4.4.6", "unity": "2018.3", "description": "Unity Atoms to manage your scenes.", "keywords": [ @@ -20,7 +20,7 @@ "/Documentation.meta" ], "dependencies": { - "com.unity-atoms.unity-atoms-core": "4.4.5", - "com.unity-atoms.unity-atoms-base-atoms": "4.4.5" + "com.unity-atoms.unity-atoms-core": "4.4.6", + "com.unity-atoms.unity-atoms-base-atoms": "4.4.6" } } diff --git a/Packages/Tags/package.json b/Packages/Tags/package.json index 4b37abdc..ff2f07ab 100644 --- a/Packages/Tags/package.json +++ b/Packages/Tags/package.json @@ -1,7 +1,7 @@ { "name": "com.unity-atoms.unity-atoms-tags", "displayName": "Unity Atoms Tags", - "version": "4.4.5", + "version": "4.4.6", "unity": "2018.3", "description": "A replacement to UnityΒ΄s tags based on Unity Atoms.", "keywords": [ @@ -18,7 +18,7 @@ "/Documentation.meta" ], "dependencies": { - "com.unity-atoms.unity-atoms-core": "4.4.5", - "com.unity-atoms.unity-atoms-base-atoms": "4.4.5" + "com.unity-atoms.unity-atoms-core": "4.4.6", + "com.unity-atoms.unity-atoms-base-atoms": "4.4.6" } } diff --git a/Packages/UI/package.json b/Packages/UI/package.json index 888fce92..e5522615 100644 --- a/Packages/UI/package.json +++ b/Packages/UI/package.json @@ -1,7 +1,7 @@ { "name": "com.unity-atoms.unity-atoms-ui", "displayName": "Unity Atoms UI", - "version": "4.4.5", + "version": "4.4.6", "unity": "2018.3", "description": "UI system using Unity Atoms.", "keywords": [ @@ -18,7 +18,7 @@ "/Documentation.meta" ], "dependencies": { - "com.unity-atoms.unity-atoms-core": "4.4.5", - "com.unity-atoms.unity-atoms-base-atoms": "4.4.5" + "com.unity-atoms.unity-atoms-core": "4.4.6", + "com.unity-atoms.unity-atoms-base-atoms": "4.4.6" } } diff --git a/README.md b/README.md index ae8af6db..16c6d8df 100644 --- a/README.md +++ b/README.md @@ -57,15 +57,15 @@ Add the following to your `manifest.json` (which is located under your project l ], "dependencies": { ... - "com.unity-atoms.unity-atoms-core": "4.4.5", - "com.unity-atoms.unity-atoms-base-atoms": "4.4.5", - "com.unity-atoms.unity-atoms-fsm": "4.4.5", - "com.unity-atoms.unity-atoms-mobile": "4.4.5", - "com.unity-atoms.unity-atoms-mono-hooks": "4.4.5", - "com.unity-atoms.unity-atoms-tags": "4.4.5", - "com.unity-atoms.unity-atoms-scene-mgmt": "4.4.5", - "com.unity-atoms.unity-atoms-ui": "4.4.5", - "com.unity-atoms.unity-atoms-input-system": "4.4.5", + "com.unity-atoms.unity-atoms-core": "4.4.6", + "com.unity-atoms.unity-atoms-base-atoms": "4.4.6", + "com.unity-atoms.unity-atoms-fsm": "4.4.6", + "com.unity-atoms.unity-atoms-mobile": "4.4.6", + "com.unity-atoms.unity-atoms-mono-hooks": "4.4.6", + "com.unity-atoms.unity-atoms-tags": "4.4.6", + "com.unity-atoms.unity-atoms-scene-mgmt": "4.4.6", + "com.unity-atoms.unity-atoms-ui": "4.4.6", + "com.unity-atoms.unity-atoms-input-system": "4.4.6", ... } } diff --git a/docs/introduction/installation.md b/docs/introduction/installation.md index 008d070a..8f94fe23 100644 --- a/docs/introduction/installation.md +++ b/docs/introduction/installation.md @@ -35,15 +35,15 @@ Add the following to your `manifest.json`: ], "dependencies": { ... - "com.unity-atoms.unity-atoms-core": "4.4.5", - "com.unity-atoms.unity-atoms-base-atoms": "4.4.5", - "com.unity-atoms.unity-atoms-fsm": "4.4.5", - "com.unity-atoms.unity-atoms-mobile": "4.4.5", - "com.unity-atoms.unity-atoms-mono-hooks": "4.4.5", - "com.unity-atoms.unity-atoms-tags": "4.4.5", - "com.unity-atoms.unity-atoms-scene-mgmt": "4.4.5", - "com.unity-atoms.unity-atoms-ui": "4.4.5", - "com.unity-atoms.unity-atoms-input-system": "4.4.5", + "com.unity-atoms.unity-atoms-core": "4.4.6", + "com.unity-atoms.unity-atoms-base-atoms": "4.4.6", + "com.unity-atoms.unity-atoms-fsm": "4.4.6", + "com.unity-atoms.unity-atoms-mobile": "4.4.6", + "com.unity-atoms.unity-atoms-mono-hooks": "4.4.6", + "com.unity-atoms.unity-atoms-tags": "4.4.6", + "com.unity-atoms.unity-atoms-scene-mgmt": "4.4.6", + "com.unity-atoms.unity-atoms-ui": "4.4.6", + "com.unity-atoms.unity-atoms-input-system": "4.4.6", ... } } diff --git a/package.json b/package.json index 5451cb7a..7b6c3ae9 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "com.unity-atoms.unity-atoms", "displayName": "Unity Atoms", - "version": "4.4.5", + "version": "4.4.6", "publishConfig": { "registry": "https://npm.pkg.github.com/" },