Skip to content

Commit cb2db95

Browse files
committed
New release
1 parent f31d822 commit cb2db95

File tree

4 files changed

+29
-3
lines changed

4 files changed

+29
-3
lines changed

Diff for: DEVELOP.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# How to develop
2+
3+
## Install dependencies
4+
5+
```bash
6+
pnpm install
7+
```
8+
9+
## Watch changes and build
10+
11+
```bash
12+
# Continuous build
13+
pnpm run dev
14+
15+
# Continuous testing
16+
pnpm run test-watch
17+
```
18+
19+
## Publish new release
20+
21+
- Define the new version to use x.y.z
22+
- Run `npm run version x.y.z`
23+
- Commit and push the file modified
24+
- Tag the commit `git tag x.y.z`
25+
- Push the tag `git push --tags`

Diff for: manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "obsidian-jira-issue",
33
"name": "Jira Issue",
4-
"version": "1.54.0",
4+
"version": "1.55.0",
55
"minAppVersion": "0.12.0",
66
"description": "This plugin allows you to track the progress of Atlassian Jira issues from your Obsidian notes.",
77
"author": "marc0l92",

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-jira-issue",
3-
"version": "1.54.0",
3+
"version": "1.55.0",
44
"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.",
55
"main": "src/main.js",
66
"scripts": {

Diff for: versions.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,6 @@
6666
"1.51.2": "0.12.0",
6767
"1.52.0": "0.12.0",
6868
"1.53.0": "0.12.0",
69-
"1.54.0": "0.12.0"
69+
"1.54.0": "0.12.0",
70+
"1.55.0": "0.12.0"
7071
}

0 commit comments

Comments
 (0)