diff --git a/CHANGELOG.md b/CHANGELOG.md index 32b17ab..caad329 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## [1.0.2] - 2024-08-30 + +### Fixed + +- Better detection of urls that have display text and should not be rendered as tags +- More graceful handling of invalid URLs +- Don't attempt to render a tag for certain known special GitHub URLs + ## [1.0.0] - 2024-07-08 🔥 First major version update! @@ -127,6 +135,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Initial release. +[1.0.2]: https://github.com/nathonius/obsidian-github-link/compare/1.0.0...1.0.2 [1.0.0]: https://github.com/nathonius/obsidian-github-link/compare/0.7.2...1.0.0 [0.7.2]: https://github.com/nathonius/obsidian-github-link/compare/0.7.1...0.7.2 [0.7.1]: https://github.com/nathonius/obsidian-github-link/compare/0.7.0...0.7.1 diff --git a/manifest.json b/manifest.json index 4ffd290..487d78e 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "github-link", "name": "GitHub Link", - "version": "1.0.0", + "version": "1.0.2", "minAppVersion": "0.15.0", "description": "Enrich your notes with issue and pull request content from GitHub", "author": "Nathonius", diff --git a/package-lock.json b/package-lock.json index 0b12bad..2ebfc0d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "obsidian-github-link", - "version": "1.0.0", + "version": "1.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "obsidian-github-link", - "version": "1.0.0", + "version": "1.0.2", "license": "MIT", "dependencies": { "@octokit/auth-oauth-device": "^6.0.1", diff --git a/package.json b/package.json index 339c93e..30893a5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-github-link", - "version": "1.0.0", + "version": "1.0.2", "description": "An Obsidian plugin enriching notes with issue and pull request content from GitHub", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index cd6ced1..5b4dd04 100644 --- a/versions.json +++ b/versions.json @@ -1,4 +1,5 @@ { + "1.0.2": "0.15.0", "1.0.0": "0.15.0", "0.7.2": "0.15.0", "0.7.1": "0.15.0",