diff --git a/CHANGELOG.md b/CHANGELOG.md
index de06db3..7edf87a 100755
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,9 @@
-## 0.8.5 (2024-05-05)
+## 0.8.7 (2024-05-06)
+
+## 0.8.5 (2024-05-05)
## 0.8.4 (2024-05-05)
diff --git a/package.json b/package.json
index 70b48d4..cb50145 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@gobstones/gobstones-scripts",
- "version": "0.8.6",
+ "version": "0.8.7",
"description": "Scripts to abstract away build configuration of Gobstones Project's libraries and modules.",
"repository": {
"type": "git",
diff --git a/project-types/CLILibrary/package-definition.json b/project-types/CLILibrary/package-definition.json
index fe62bcd..443b4d5 100644
--- a/project-types/CLILibrary/package-definition.json
+++ b/project-types/CLILibrary/package-definition.json
@@ -59,7 +59,7 @@
"commander": "^11.1.0"
},
"devDependencies": {
- "@gobstones/gobstones-scripts": "^0.8.6",
+ "@gobstones/gobstones-scripts": "^0.8.7",
"husky": "^8.0.2"
}
}
diff --git a/project-types/Common/license.config.json b/project-types/Common/license.config.json
deleted file mode 100644
index 45614a6..0000000
--- a/project-types/Common/license.config.json
+++ /dev/null
@@ -1 +0,0 @@
-{"license":"undefined","ignore":["docs/","test/","project-types/**/src/**/!(*.ts|*.tsx)","project-types/**/test/**/*","dist/**/!(*.d.ts|*.js|*.cjs|*.mjs)","**/!(*.ts|*.tsx)"],"defaultFormat":{"prepend":"/*","append":"*/"},"licenseFormats":{"ts|tsx|js|jsx":{"prepend":"/*","append":" */","eachLine":{"prepend":" * "}}},"trailingWhitespace":"TRIM"}
\ No newline at end of file
diff --git a/project-types/Library/package-definition.json b/project-types/Library/package-definition.json
index 4e11388..39e6aa5 100644
--- a/project-types/Library/package-definition.json
+++ b/project-types/Library/package-definition.json
@@ -44,7 +44,7 @@
"@gobstones/gobstones-core": "^0.4.7"
},
"devDependencies": {
- "@gobstones/gobstones-scripts": "^0.8.6",
+ "@gobstones/gobstones-scripts": "^0.8.7",
"husky": "^8.0.2"
}
}
diff --git a/project-types/NonCode/package-definition.json b/project-types/NonCode/package-definition.json
index 7022b9b..3df453d 100644
--- a/project-types/NonCode/package-definition.json
+++ b/project-types/NonCode/package-definition.json
@@ -42,7 +42,7 @@
},
"dependencies": {},
"devDependencies": {
- "@gobstones/gobstones-scripts": "^0.8.6",
+ "@gobstones/gobstones-scripts": "^0.8.7",
"husky": "^8.0.2"
}
}
diff --git a/project-types/ReactLibrary/package-definition.json b/project-types/ReactLibrary/package-definition.json
index 39dc28a..2e7da13 100644
--- a/project-types/ReactLibrary/package-definition.json
+++ b/project-types/ReactLibrary/package-definition.json
@@ -47,7 +47,7 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
- "@gobstones/gobstones-scripts": "^0.8.6",
+ "@gobstones/gobstones-scripts": "^0.8.7",
"husky": "^8.0.2"
}
}
diff --git a/src/Config/about.ts b/src/Config/about.ts
index 785ef6e..d67e057 100644
--- a/src/Config/about.ts
+++ b/src/Config/about.ts
@@ -23,7 +23,7 @@
*
* @group Internal: Values
*/
-export const version = '0.8.6';
+export const version = '0.8.7';
/**
* The tool's test server address.
diff --git a/src/Config/config.ts b/src/Config/config.ts
index 88481f6..a7bc3e1 100644
--- a/src/Config/config.ts
+++ b/src/Config/config.ts
@@ -864,7 +864,7 @@ export class Config {
// This file descriptor is used to find
// The LICENSE_HEADER. In principle it should not be
// overridden at all.
- gobstonesScriptsLocation: ['common/LICENSE_HEADER'],
+ gobstonesScriptsLocation: ['Common/LICENSE_HEADER'],
projectLocation: ['LICENSE_HEADER'],
isOverridable: true
}),
@@ -877,7 +877,7 @@ export class Config {
// This file descriptor is used to find
// The license.config.js. In principle it should not be
// overridden at all.
- gobstonesScriptsLocation: ['common/license.config.js'],
+ gobstonesScriptsLocation: ['Common/license.config.js'],
projectLocation: ['license.config.js'],
isOverridable: true
}