diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..31c01b9 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,30 @@ +# 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.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + + + + + +## [0.1.0] - 2024-02-01 + +Initial release. + + + +[0.1.0]: https://github.com/nathonius/obsidian-github-link/releases/tag/0.1.0 diff --git a/README.md b/README.md index 2892c53..ef7bd8f 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,8 @@ For public repositories, no extra configuration is required. For private repos, ### Authentication +> **NOTE**: Tokens will be stored in plain text. Use at your own risk. + Authentication only requires a GitHub account. In GitHub Link plugin settings, add a new account. Give the account a name. The plugin supports an automated authentication flow, or you can [generate your own token](https://github.com/settings/tokens). To use the automated flow, select "Generate Token". In the modal that appears, copy the code and open the authentication link. After pasting the auth link, you'll be prompted to allow access to the GitHub Link plugin. Once accepted, you can return to Obsidian and the token will be saved automatically. diff --git a/manifest.json b/manifest.json index d8b5d21..aac4a7f 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "github-link", "name": "GitHub Link", - "version": "1.0.0", + "version": "0.1.0", "minAppVersion": "0.15.0", "description": "Enrich your notes with content from GitHub REST API", "author": "Nathonius", diff --git a/package-lock.json b/package-lock.json index b7f88d9..60f01e6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "obsidian-github-link", - "version": "1.0.0", + "version": "0.1.0", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/package.json b/package.json index 74da34d..e6e8285 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-github-link", - "version": "1.0.0", + "version": "0.1.0", "description": "An Obsidian plugin enriching notes with data from GitHub's REST API", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index 26382a1..9be1f3d 100644 --- a/versions.json +++ b/versions.json @@ -1,3 +1,3 @@ { - "1.0.0": "0.15.0" + "0.1.0": "0.15.0" }