Skip to content

Commit

Permalink
Release 10.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Release Automat committed Nov 2, 2024
1 parent b61e033 commit 9535346
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
6 changes: 6 additions & 0 deletions Packages/tlp.udonutils/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ The used pattern MAJOR.MINOR.PATCH indicates:

All notable changes to this project will be documented in this file.

### [10.0.1] - 2024-11-02

#### 🐛 Bug Fixes

- *(ExecuteAfter)* Address compiler error caused by special exception

### [10.0.0] - 2024-11-02

#### 🚀 Features
Expand Down
2 changes: 1 addition & 1 deletion Packages/tlp.udonutils/Runtime/Attributes/ExecuteAfter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ private static int UpdateMax(Dependency othersDependency, int max) {

private static void CheckForCyclicDependency(Type ownType, Dependency othersDependency, Type type) {
if (othersDependency.ExecuteAfter.Contains(ownType)) {
throw new InvalidConstraintException(
throw new ArgumentException(
$"In {nameof(ExecuteAfterAttribute)}: Cyclic dependency between {ownType.Name} and {type.Name}"
);
}
Expand Down
2 changes: 1 addition & 1 deletion Packages/tlp.udonutils/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tlp.udonutils",
"displayName": "TLP UdonUtils",
"version": "10.0.0",
"version": "10.0.1",
"description": "Contains the base scripts/tools for TLP packages as well as prefabs and potentially helpful scripts for VRChat worlds.",
"gitDependencies": {},
"legacyFolders": {
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ The used pattern MAJOR.MINOR.PATCH indicates:

All notable changes to this project will be documented in this file.

### [10.0.1] - 2024-11-02

#### 🐛 Bug Fixes

- *(ExecuteAfter)* Address compiler error caused by special exception

### [10.0.0] - 2024-11-02

#### 🚀 Features
Expand Down

0 comments on commit 9535346

Please sign in to comment.