Skip to content

Commit

Permalink
chore(release): 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
devbean committed Dec 12, 2022
1 parent b25659b commit d20ec94
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 9 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@

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.

## [0.6.0](https://github.com/devbean/obsidian-wordpress/compare/0.4.0...0.6.0) (2022-12-12)


### Features

* Now you can set comment status when publishing. ([2b69006](https://github.com/devbean/obsidian-wordpress/commit/2b69006033a1543bc6451cb610eb66242dc77afd))
* Support i18n. ([d8560ea](https://github.com/devbean/obsidian-wordpress/commit/d8560ea602f43de59db0565189710fe8645737a0))
* You can remember password on login modal. Be careful! ([4dd257d](https://github.com/devbean/obsidian-wordpress/commit/4dd257d2151d12cc93752d4396ed479b880f3de3))
* You can set XML-RPC path in settings, default is /xmlrpc.php ([b44be7d](https://github.com/devbean/obsidian-wordpress/commit/b44be7db1db3c24286052062a7e05422433a57af))


### Bug Fixes

* Cannot login if username and password are not saved. ([f8d2a5b](https://github.com/devbean/obsidian-wordpress/commit/f8d2a5b4f3e9cc9ce5ddce04133a130faf9f4401))
* Fix date-fns template placeholder error. ([f5b3e32](https://github.com/devbean/obsidian-wordpress/commit/f5b3e32ff56e5ba1904d86703f3973a447c9ca5c))
* Normalize URL. ([b25659b](https://github.com/devbean/obsidian-wordpress/commit/b25659bf5da586d3aa4eb1fcf31f4544616b4acd))
* Remove client cache. ([b6584e7](https://github.com/devbean/obsidian-wordpress/commit/b6584e73892ab6a52915ab00b9a00cab2c5752fd))
* Show notice if no WordPress URL set. ([baf92d7](https://github.com/devbean/obsidian-wordpress/commit/baf92d79e5f2db5f97210db7fa157f9b5ba0d531))
* Show notice if username or password is invalided. ([577f24f](https://github.com/devbean/obsidian-wordpress/commit/577f24f7c885f6d715fd51c9bc563681a528b370))

## [0.5.0](https://github.com/devbean/obsidian-wordpress/compare/0.4.0...0.5.0) (2022-08-15)


Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-wordpress",
"name": "WordPress",
"version": "0.5.0",
"version": "0.6.0",
"minAppVersion": "0.12.0",
"description": "A plugin for publishing Obsidian documents to WordPress.",
"author": "devbean",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "obsidian-wordpress",
"version": "0.5.0",
"version": "0.6.0",
"description": "A plugin for publishing Obsidian documents to WordPress.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"release": "standard-version",
"release-test": "standard-version --dry-run",
"release-major": "standard-version --release-as major",
"release-major-test": "standard-version --dry-run --release-as major",
"release-minor": "standard-version --release-as minor",
"release-minor-test": "standard-version --dry-run --release-as minor",
"version": "node version-bump.mjs && git add manifest.json versions.json"
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"standard-version": {
"t": ""
Expand All @@ -35,13 +35,13 @@
"@typescript-eslint/parser": "^5.2.0",
"builtin-modules": "^3.2.0",
"date-fns": "^2.28.0",
"esbuild": "0.14.47",
"esbuild": "0.14.47",
"lodash-es": "^4.17.21",
"marked": "^4.0.6",
"obsidian": "latest",
"standard-version": "^9.3.2",
"tslib": "2.4.0",
"typescript": "4.7.4",
"tslib": "2.4.0",
"typescript": "4.7.4",
"xmlbuilder2": "^3.0.2"
}
}

0 comments on commit d20ec94

Please sign in to comment.