mirror of
https://github.com/nathonius/obsidian-github-link.git
synced 2026-07-22 09:20:25 +00:00
Merge pull request #138 from nathonius/release/v1.0.0
🚀 release: Release v1.0.0
This commit is contained in:
commit
fab1524523
5 changed files with 25 additions and 6 deletions
20
CHANGELOG.md
20
CHANGELOG.md
|
|
@ -16,6 +16,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
<!-- ## Unreleased -->
|
||||
|
||||
## [1.0.0] - 2024-07-08
|
||||
|
||||
🔥 First major version update!
|
||||
|
||||
### Changed
|
||||
|
||||
- Tables with multiple pages of results can now show a paginator to fetch other pages
|
||||
- Better caching for all request types
|
||||
- Support for new columns: labels, assignee
|
||||
- Query for issues from a given organization
|
||||
- ⚠️ BREAKING CHANGE: Plugin's GitHub API has changed; it was, and remains undocumented so use at your own risk
|
||||
- ⚠️ BREAKING CHANGE: Users on version 0.5.1 or earlier may lose their account configurations upon updating.
|
||||
|
||||
### Fixed
|
||||
|
||||
- _Much_ better inline tag behavior in live preview mode! ⚡ No more stuck tags, and tags will not render inside code blocks.
|
||||
- Author and assignee columns will not overflow their containers
|
||||
|
||||
## [0.7.2] - 2024-06-16
|
||||
|
||||
### Fixed
|
||||
|
|
@ -50,7 +68,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- Added a new contributing document
|
||||
- Custom queries include a link to view the query results on GitHub
|
||||
|
||||
|
||||
## [0.5.1] - 2024-03-16
|
||||
|
||||
### Changed
|
||||
|
|
@ -110,6 +127,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
Initial release.
|
||||
|
||||
[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
|
||||
[0.7.0]: https://github.com/nathonius/obsidian-github-link/compare/0.6.0...0.7.0
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "github-link",
|
||||
"name": "GitHub Link",
|
||||
"version": "0.7.2",
|
||||
"version": "1.0.0",
|
||||
"minAppVersion": "0.15.0",
|
||||
"description": "Enrich your notes with issue and pull request content from GitHub",
|
||||
"author": "Nathonius",
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "obsidian-github-link",
|
||||
"version": "0.7.2",
|
||||
"version": "1.0.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "obsidian-github-link",
|
||||
"version": "0.7.2",
|
||||
"version": "1.0.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@octokit/auth-oauth-device": "^6.0.1",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "obsidian-github-link",
|
||||
"version": "0.7.2",
|
||||
"version": "1.0.0",
|
||||
"description": "An Obsidian plugin enriching notes with issue and pull request content from GitHub",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
|
@ -49,4 +49,4 @@
|
|||
"lodash": "^4.17.21",
|
||||
"queue": "^7.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
"1.0.0": "0.15.0",
|
||||
"0.7.2": "0.15.0",
|
||||
"0.7.1": "0.15.0",
|
||||
"0.7.0": "0.15.0",
|
||||
|
|
|
|||
Loading…
Reference in a new issue