Skip to content

Commit

Permalink
fix(Changelog): changelog file location
Browse files Browse the repository at this point in the history
The `CHANGELOG.md` file was accidentally put inside the `Sources`
folder. Besides moving it into the correct folder (the project root)
this fix also brings back the release notes of v1.0.0 which were
overridden erroneously. A title has been added to the changelog
document and the CD configuration.
  • Loading branch information
Christopher-Marcel Böddecker committed Dec 15, 2018
1 parent 2094c45 commit ef1bcee
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 9 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Changelog

## [1.0.1](https://github.com/ExtendRealityLtd/Malimbe/compare/v1.0.0...v1.0.1) (2018-12-15)


### Bug Fixes

* **UnityIntegration:** allow usage as a package outside the project ([c737c17](https://github.com/ExtendRealityLtd/Malimbe/commit/c737c17))

## 1.0.0 (2018-12-15)


### Bug Fixes

* **Weaver:** find Fody addin assemblies ([082f2c2](https://github.com/ExtendRealityLtd/Malimbe/commit/082f2c2))


### Features

* **Weaver:** only generate properties for tagged fields ([1542969](https://github.com/ExtendRealityLtd/Malimbe/commit/1542969))
6 changes: 0 additions & 6 deletions Sources/CHANGELOG.md

This file was deleted.

7 changes: 4 additions & 3 deletions Sources/UnityPackaging/Package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"Runtime"
],
"scripts": {
"postversion": "PowerShell; Copy-Item -Path CHANGELOG.md -Destination ../../../ -Force; Copy-Item -Path package.json -Destination ../../Package/package.json -Force; Exit"
"postversion": "PowerShell; Copy-Item -Path CHANGELOG.md -Destination ../../../../ -Force; Copy-Item -Path package.json -Destination ../../Package/package.json -Force; Exit"
},
"release": {
"branches": [
Expand Down Expand Up @@ -81,7 +81,8 @@
[
"@semantic-release/changelog",
{
"changelogFile": "./CHANGELOG.md"
"changelogFile": "./CHANGELOG.md",
"changelogTitle": "# Changelog"
}
],
[
Expand All @@ -95,7 +96,7 @@
{
"message": "chore(release): set version to ${nextRelease.version}\n\n${nextRelease.notes}",
"assets": [
"../../../CHANGELOG.md",
"../../../../CHANGELOG.md",
"../../Package/package.json"
]
}
Expand Down

0 comments on commit ef1bcee

Please sign in to comment.