diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 9dfcf41..5685f01 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -15,8 +15,5 @@ jobs:
fetch-tags: true
submodules: true
ssh-key: ${{ secrets.ACCESS_KEY }}
- - name: Release Notes
- run: |
- git log --pretty=format:'%d %s' ${GITHUB_REF} | perl -pe 's| \(.*tag: (\d+.\d+.\d+(-preview\d{3})?)(, .*?)*\)|\n## \1\n|g' > RELEASE_NOTES.md
- name: Build
run: ./build.sh --target Publish --publish --source GitHUb --feed ${{ vars.ISE_NUGET_FEED }} --username ${{ vars.ISE_NUGET_USERNAME }} --token ${{ secrets.GITHUB_TOKEN }}
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 46a7a8e..07d9a54 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -16,12 +16,8 @@ jobs:
uses: actions/checkout@v4.1.1
with:
fetch-depth: 999
- fetch-tags: true
submodules: true
ssh-key: ${{ secrets.ACCESS_KEY }}
- - name: Release Notes
- run: |
- git log --pretty=format:'%d %s' ${GITHUB_REF} | perl -pe 's| \(.*tag: (\d+.\d+.\d+(-preview\d{3})?)(, .*?)*\)|\n## \1\n|g' > RELEASE_NOTES.md
- name: Build
run: ./build.sh --target Publish --publish --nuget --token ${{ secrets.PUBLIC_NUGET_APIKEY }}
release:
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..88712d9
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,15 @@
+# Changelog
+
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+
+## 0.2.0
+
+- Added support for Issuu API v2's /publication/ operations
+
+## 0.1.0
+
+### Added
+
+- Support for Issuu API v2's /draft/ operations
diff --git a/Directory.Build.props b/Directory.Build.props
index 56fec90..594086d 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -4,9 +4,11 @@