Skip to content

Commit 13a04db

Browse files
[AUTO-GENERATED] Synchronizing changes from private repository
1 parent fe08ddd commit 13a04db

File tree

7 files changed

+16
-8
lines changed

7 files changed

+16
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Changelog
22
All notable changes to this project will be documented in this file using the standards as defined at [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0).
33

4+
### Version 1.0.3 *(2025-06-11)*
5+
Bug Fixes:
6+
7+
- Fix wrong internal namespaces definitions.
8+
- Fix Editor Unit tests to target correct package definitions.
9+
- Fix `VersionCheck` `AreEqual` assertion.
10+
411
### Version 1.0.2 *(2024-09-19)*
512
Added:
613
- `toObjectFromJson` in `ChartboostUnityUtilities.h` for reusable JSON serialization.

Chartboost.CSharp.Utilities.Unity.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata>
44
<id>Chartboost.CSharp.Utilities.Unity</id>
5-
<version>1.0.2</version>
5+
<version>1.0.3</version>
66
<title>Chartboost Utilities for Unity</title>
77
<description>Reusable Utilities for Chartboost's Unity Projects</description>
88
<authors>Chartboost</authors>

Editor/VersionCheck.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,13 @@ public static void ValidateVersions(string upmPackageName, string nuGetPackageNa
3131
LogController.Log($"UPM Version : {upmVersion}", LogLevel.Debug);
3232
LogController.Log($"NuGet Version : {nugetVersion}", LogLevel.Debug);
3333

34-
if (codeVersion == null)
34+
if (string.IsNullOrEmpty(codeVersion))
3535
Assert.AreEqual(upmVersion, nugetVersion);
3636
else
3737
{
3838
LogController.Log($"Code Version: {codeVersion}", LogLevel.Debug);
39-
Assert.AreEqual(upmVersion, nugetVersion, codeVersion);
39+
Assert.AreEqual(upmVersion, nugetVersion);
40+
Assert.AreEqual(upmVersion, codeVersion);
4041
}
4142
}
4243

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This package is meant to be a dependency for other Chartboost Packages; however,
88
## Using the public [npm registry](https://www.npmjs.com/search?q=com.chartboost.unity.utilities)
99
```json
1010
"dependencies": {
11-
"com.chartboost.unity.utilities": "1.0.1",
11+
"com.chartboost.unity.utilities": "1.0.3",
1212
...
1313
},
1414
"scopedRegistries": [

Runtime/Utilities/Generics/StronglyTyped.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.ComponentModel;
33
using System.Globalization;
44

5-
namespace Chartboost.Core.Utilities
5+
namespace Chartboost.Generics
66
{
77
/// <summary>
88
/// Interface to make values strongly-typed with help of TypeConverters.

Tests/Editor/VersionValidator.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
using NUnit.Framework;
21
using Chartboost.Editor;
2+
using NUnit.Framework;
33

4-
namespace Chartboost.Utilities
4+
namespace Chartboost.Tests.Editor
55
{
66
public class VersionValidator
77
{

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.chartboost.unity.utilities",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"displayName": "Chartboost Utilities",
55
"description": "Reusable Utilities for Chartboost's Unity Projects",
66
"unity": "2022.3",

0 commit comments

Comments
 (0)