Skip to content
This repository was archived by the owner on Mar 3, 2024. It is now read-only.

Commit 056c4d3

Browse files
committed
release v1.0.0
1 parent e089487 commit 056c4d3

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

DEV_README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515

1616
1. Update your manifest.json with your new version number, such as 1.0.1, and the minimum Obsidian version required for your latest release.
1717
2. Update your versions.json file with "new-plugin-version": "minimum-obsidian-version" so older versions of Obsidian can download an older version of your plugin that's compatible.
18-
3. Create new GitHub release using your new version number as the "Tag version". Use the exact version number, don't include a prefix v. See here for an example: https://github.com/obsidianmd/obsidian-sample-plugin/releases
19-
4. Upload the files manifest.json, main.js, styles.css as binary attachments. Note: The manifest.json file must be in two places, first the root path of your repository and also in the release.
18+
3. Update `package.json`
19+
4. Create new GitHub release using your new version number as the "Tag version". Use the exact version number, don't include a prefix v. See here for an example: https://github.com/obsidianmd/obsidian-sample-plugin/releases
20+
5. Upload the files manifest.json, main.js, styles.css as binary attachments. Note: The manifest.json file must be in two places, first the root path of your repository and also in the release.
2021
Publish the release.

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "postgresql-obsidian",
33
"name": "PostgreSQL Obsidian",
4-
"version": "0.0.2",
4+
"version": "1.0.0",
55
"minAppVersion": "0.12.0",
66
"description": "An Obsidian plugin to upload your notes' metadata to your database.",
77
"author": "clouedoc",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postgresql-obsidian",
3-
"version": "0.0.1",
3+
"version": "1.0.0",
44
"description": "An obsidian.md plugin that sends your data to a PostgreSQL database for further analysis.",
55
"main": "main.js",
66
"scripts": {

versions.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"1.0.0": "0.9.7",
23
"0.0.2": "0.9.7",
34
"0.0.1": "0.9.7"
45
}

0 commit comments

Comments
 (0)