Skip to content

Commit

Permalink
chore(release): 151.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# [151.0.0](v150.0.0...v151.0.0) (2024-12-27)

### Bug Fixes

* fixing SetDirtyBit being called with mask equals 0 ([56d07cd](56d07cd))
* improving error message for spawning scene objects ([91f89ea](91f89ea))

* feat!: SpawnVisibleObjects now calls RemoveAllVisibleObjects ([fe14235](fe14235))
* feat!: SpawnVisibleObjects no longer skips disabled gameObject ([d160e77](d160e77))

### BREAKING CHANGES

* SpawnVisibleObjects now calls RemoveAllVisibleObjects before spawning objects
* SpawnVisibleObjects no longer checks `identity.gameObject.activeSelf` before spawning objects
  • Loading branch information
semantic-release-bot committed Dec 27, 2024
1 parent 56d07cd commit 4236af8
Show file tree
Hide file tree
Showing 9 changed files with 26 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Assets/Mirage/Authenticators/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Reflection;
using System.Runtime.CompilerServices;

[assembly: AssemblyVersion("150.0.0")]
[assembly: AssemblyVersion("151.0.0")]

[assembly: InternalsVisibleTo("Mirage.Tests.Runtime")]
18 changes: 18 additions & 0 deletions Assets/Mirage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# [151.0.0](https://github.com/MirageNet/Mirage/compare/v150.0.0...v151.0.0) (2024-12-27)


### Bug Fixes

* fixing SetDirtyBit being called with mask equals 0 ([56d07cd](https://github.com/MirageNet/Mirage/commit/56d07cd2a4b558f03221faaa84c4c8e54a42cc13))
* improving error message for spawning scene objects ([91f89ea](https://github.com/MirageNet/Mirage/commit/91f89ea1af2dd809a2f52279e7002f8a09b3dec4))


* feat!: SpawnVisibleObjects now calls RemoveAllVisibleObjects ([fe14235](https://github.com/MirageNet/Mirage/commit/fe14235a720b32cf1d6e9606e6da7628a6496f4a))
* feat!: SpawnVisibleObjects no longer skips disabled gameObject ([d160e77](https://github.com/MirageNet/Mirage/commit/d160e77381b43fac33c3941e6f863366cd0cf510))


### BREAKING CHANGES

* SpawnVisibleObjects now calls RemoveAllVisibleObjects before spawning objects
* SpawnVisibleObjects no longer checks `identity.gameObject.activeSelf` before spawning objects

# [150.0.0](https://github.com/MirageNet/Mirage/compare/v149.8.0...v150.0.0) (2024-12-06)


Expand Down
2 changes: 1 addition & 1 deletion Assets/Mirage/Components/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Reflection;
using System.Runtime.CompilerServices;

[assembly: AssemblyVersion("150.0.0")]
[assembly: AssemblyVersion("151.0.0")]

[assembly: InternalsVisibleTo("Mirage.Tests.Runtime")]
2 changes: 1 addition & 1 deletion Assets/Mirage/Runtime/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Reflection;
using System.Runtime.CompilerServices;

[assembly: AssemblyVersion("150.0.0")]
[assembly: AssemblyVersion("151.0.0")]

[assembly: InternalsVisibleTo("Mirage.Tests.Common")]
[assembly: InternalsVisibleTo("Mirage.Tests")]
Expand Down
2 changes: 1 addition & 1 deletion Assets/Mirage/Runtime/SocketLayer/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Reflection;
using System.Runtime.CompilerServices;

[assembly: AssemblyVersion("150.0.0")]
[assembly: AssemblyVersion("151.0.0")]

[assembly: InternalsVisibleTo("Mirage.SocketLayer.Tests")]
2 changes: 1 addition & 1 deletion Assets/Mirage/Samples~/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
using System.Reflection;

[assembly: AssemblyVersion("150.0.0")]
[assembly: AssemblyVersion("151.0.0")]
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
using System.Reflection;

[assembly: AssemblyVersion("150.0.0")]
[assembly: AssemblyVersion("151.0.0")]
2 changes: 1 addition & 1 deletion Assets/Mirage/Weaver/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Reflection;
using System.Runtime.CompilerServices;

[assembly: AssemblyVersion("150.0.0")]
[assembly: AssemblyVersion("151.0.0")]

[assembly: InternalsVisibleTo("Mirage.Tests")]
2 changes: 1 addition & 1 deletion Assets/Mirage/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.miragenet.mirage",
"displayName": "Mirage",
"version": "150.0.0",
"version": "151.0.0",
"unity": "2020.3",
"description": "Mirage is a high level Networking API for Unity, supporting different low level Transports.",
"author": "Mirage",
Expand Down

0 comments on commit 4236af8

Please sign in to comment.