diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3b5fbd3..098c34d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,9 +26,11 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} run: | - tag="${GITHUB_REF#refs/tags/}" + tag="${GITHUB_REF#refs/tags/}" \ + + git log $(git describe --tags --abbrev=0)..HEAD --oneline > release-notes.md && git add release-notes.md \ gh release create "$tag" \ --title="$tag" \ - --draft \ + --notes-file="release-notes.md" \ manifest.json build/main.js build/styles.css diff --git a/manifest.json b/manifest.json index 8e5ab4a..38a9b2a 100644 --- a/manifest.json +++ b/manifest.json @@ -1,11 +1,11 @@ { "id": "max-chatbot", "name": "MAX", - "version": "0.0.1", + "version": "0.0.2", "minAppVersion": "1.5.0", "description": "Generate and brainstorm ideas while creating your notes using Large Language Models (LLMs) from Ollama, LM Studio, Anthropic, OpenAI, Mistral AI, and more for Obsidian.", "author": "anpigon", "authorUrl": "https://github.com/anpigon", "fundingUrl": "https://buymeacoffee.com/anpigon", "isDesktopOnly": false -} +} \ No newline at end of file diff --git a/package.json b/package.json index ce7833d..1b6e0c5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "max-chatbot", - "version": "2.0.0", + "version": "0.0.2", "description": "Generate and brainstorm ideas while creating your notes using Large Language Models (LLMs) from Ollama, LM Studio, Anthropic, OpenAI, Mistral AI, and more for Obsidian.", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index 0967ef4..c4cdf16 100644 --- a/versions.json +++ b/versions.json @@ -1 +1,3 @@ -{} +{ + "0.0.2": "1.5.0" +} \ No newline at end of file