Skip to content

Commit

Permalink
Merge pull request #10 from Jubessin/2.1.1
Browse files Browse the repository at this point in the history
update package dependencies
  • Loading branch information
Jubessin authored Jan 31, 2023
2 parents 7f57917 + 6cc1295 commit 0d13314
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 18 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- configuration for enforcer logging

## [2.1.1] --- 2023-01-31

### Changed

- com.ikonoclast.common dependency version
- exposed ID getter in ClassAttributeEnforcers

## [2.1.0] --- 2023-01-31

### Added
Expand Down
6 changes: 3 additions & 3 deletions Editor/DisallowComponentClassAttributeEnforcer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ internal sealed class DisallowComponentClassAttributeEnforcer : IClassAttributeE

#region Properties

public string ID =>
nameof(DisallowComponentClassAttributeEnforcer);

public static bool Enabled
{
get
Expand Down Expand Up @@ -166,9 +169,6 @@ private static void OnRequestAttributeEnforcement()

#region IEditorSaveObject Implementations

string ISaveObject.ID =>
nameof(DisallowComponentClassAttributeEnforcer);

Map ISaveObject.Serialize()
{
var map = new Map(SaveObject.ID);
Expand Down
6 changes: 3 additions & 3 deletions Editor/RequireChildComponentClassAttributeEnforcer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ internal sealed class RequireChildComponentClassAttributeEnforcer : IClassAttrib

#region Properties

public string ID =>
nameof(RequireChildComponentClassAttributeEnforcer);

public static bool Enabled
{
get
Expand Down Expand Up @@ -225,9 +228,6 @@ private static void OnRequestAttributeEnforcement()

#region IEditorSaveObject Implementations

string ISaveObject.ID =>
nameof(RequireChildComponentClassAttributeEnforcer);

Map ISaveObject.Serialize()
{
var map = new Map(SaveObject.ID);
Expand Down
6 changes: 3 additions & 3 deletions Editor/RequireComponentClassAttributeEnforcer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ internal sealed class RequireComponentClassAttributeEnforcer : IClassAttributeEn

#region Properties

public string ID =>
nameof(RequireComponentClassAttributeEnforcer);

public static bool Enabled
{
get
Expand Down Expand Up @@ -182,9 +185,6 @@ private static void OnRequestAttributeEnforcement()

#region IEditorSaveObject Implementations

string ISaveObject.ID =>
nameof(RequireComponentClassAttributeEnforcer);

Map ISaveObject.Serialize()
{
var map = new Map(SaveObject.ID);
Expand Down
6 changes: 3 additions & 3 deletions Editor/RequireLayerClassAttributeEnforcer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ internal sealed class RequireLayerClassAttributeEnforcer : IClassAttributeEnforc

#region Properties

public string ID =>
nameof(RequireLayerClassAttributeEnforcer);

public static bool Enabled
{
get
Expand Down Expand Up @@ -168,9 +171,6 @@ private static void OnRequestAttributeEnforcement()

#region IEditorSaveObject Implementations

string ISaveObject.ID =>
nameof(RequireLayerClassAttributeEnforcer);

Map ISaveObject.Serialize()
{
var map = new Map(SaveObject.ID);
Expand Down
6 changes: 3 additions & 3 deletions Editor/RequireNameClassAttributeEnforcer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ internal sealed class RequireNameClassAttributeEnforcer : IClassAttributeEnforce

#region Properties

public string ID =>
nameof(RequireNameClassAttributeEnforcer);

public static bool Enabled
{
get
Expand Down Expand Up @@ -161,9 +164,6 @@ private static void OnRequestAttributeEnforcement()

#region IEditorSaveObject Implementations

string ISaveObject.ID =>
nameof(RequireNameClassAttributeEnforcer);

Map ISaveObject.Serialize()
{
var map = new Map(SaveObject.ID);
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ Unity package used in the development of Ikonoclast projects, containing a set o

This package has dependencies. To use this package, add the following to the manifest.json file found under Assets > Packages:

* `"com.ikonoclast.common" : "https://github.com/Jubessin/com.ikonoclast.common.git#2.4.0"`
* `"com.ikonoclast.common" : "https://github.com/Jubessin/com.ikonoclast.common.git#2.4.1"`
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"license": "MIT",
"unity": "2020.3",
"version": "2.1.0",
"version": "2.1.1",
"author": {
"name": "Jubessin",
"url": "https://github.com/Jubessin"
Expand All @@ -13,6 +13,6 @@
],
"description": "Unity package used in the development of Ikonoclast projects, containing a set of attributes that can be configured, applied to classes, and enforced when the project loads or the hierarchy changes.",
"dependencies": {
"com.ikonoclast.common": "2.4.0"
"com.ikonoclast.common": "2.4.1"
}
}

0 comments on commit 0d13314

Please sign in to comment.