Skip to content

Commit

Permalink
New release
Browse files Browse the repository at this point in the history
  • Loading branch information
marc0l92 committed Nov 12, 2023
1 parent f31d822 commit cb2db95
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 3 deletions.
25 changes: 25 additions & 0 deletions DEVELOP.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# How to develop

## Install dependencies

```bash
pnpm install
```

## Watch changes and build

```bash
# Continuous build
pnpm run dev

# Continuous testing
pnpm run test-watch
```

## Publish new release

- Define the new version to use x.y.z
- Run `npm run version x.y.z`
- Commit and push the file modified
- Tag the commit `git tag x.y.z`
- Push the tag `git push --tags`
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-jira-issue",
"name": "Jira Issue",
"version": "1.54.0",
"version": "1.55.0",
"minAppVersion": "0.12.0",
"description": "This plugin allows you to track the progress of Atlassian Jira issues from your Obsidian notes.",
"author": "marc0l92",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-jira-issue",
"version": "1.54.0",
"version": "1.55.0",
"description": "This plugin allows you to track the progress of [Atlassian Jira](https://www.atlassian.com/software/jira) issues from your [Obsidian](https://obsidian.md/) notes.",
"main": "src/main.js",
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,6 @@
"1.51.2": "0.12.0",
"1.52.0": "0.12.0",
"1.53.0": "0.12.0",
"1.54.0": "0.12.0"
"1.54.0": "0.12.0",
"1.55.0": "0.12.0"
}

0 comments on commit cb2db95

Please sign in to comment.