Skip to content

Commit 1ad97b4

Browse files
committed
chore(release): 0.1.0
1 parent 3dbe152 commit 1ad97b4

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [0.1.0](https://github.com/devbean/obsidian-wordpress/compare/0.0.2...0.1.0) (2022-02-24)
6+
7+
8+
### Features
9+
10+
* Use own XML-RPC implementation in order to support mobile. ([d0cc528](https://github.com/devbean/obsidian-wordpress/commit/d0cc5280d64ee2eded8c124205ef4cf9df9d60dd))
11+
512
### [0.0.2](https://github.com/devbean/obsidian-wordpress/compare/0.0.1...0.0.2) (2021-12-22)
613

714

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
{
22
"name": "obsidian-wordpress",
3-
"version": "0.0.2",
3+
"version": "0.1.0",
44
"description": "A plugin for publishing Obsidian documents to WordPress.",
55
"main": "main.js",
66
"scripts": {
77
"dev": "node esbuild.config.mjs",
88
"build": "node esbuild.config.mjs production",
9-
"release": "standard-version"
9+
"release": "standard-version",
10+
"release-test": "standard-version --dry-run",
11+
"release-major": "standard-version --release-as major",
12+
"release-major-test": "standard-version --dry-run --release-as major",
13+
"release-minor": "standard-version --release-as minor",
14+
"release-minor-test": "standard-version --dry-run --release-as minor"
1015
},
1116
"standard-version": {
1217
"t": ""

0 commit comments

Comments
 (0)