From 9ecad941c23e29ea243ed0a785a3e5973700fbdd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 28 Dec 2023 09:19:51 +0000 Subject: [PATCH] =?UTF-8?q?chore(release):=20version=20packages=20?= =?UTF-8?q?=F0=9F=A6=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .changeset/smooth-pandas-fetch.md | 21 --------------------- lib/CHANGELOG.md | 25 +++++++++++++++++++++++++ lib/package.json | 2 +- playground/CHANGELOG.md | 25 +++++++++++++++++++++++++ playground/package.json | 2 +- 5 files changed, 52 insertions(+), 23 deletions(-) delete mode 100644 .changeset/smooth-pandas-fetch.md create mode 100644 lib/CHANGELOG.md create mode 100644 playground/CHANGELOG.md diff --git a/.changeset/smooth-pandas-fetch.md b/.changeset/smooth-pandas-fetch.md deleted file mode 100644 index c1b7298..0000000 --- a/.changeset/smooth-pandas-fetch.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -'medmark-playground': minor -'medmark': minor ---- - -Add ability to init Medmark by executing `medmark init`. - -```bash -medmark init -``` -This will do the following. - -- Create a `.medmark` folder at the root of the execution with the following folder structure. - -```bash -├── .medmark -│ ├── medium-export # Should extract the medium archive here. -│ │ ├── .gitkeep -│ ├── templates # Should contain the templates for Medmark. -│ │ ├── sample-medmark-template.js -``` diff --git a/lib/CHANGELOG.md b/lib/CHANGELOG.md new file mode 100644 index 0000000..5d678f3 --- /dev/null +++ b/lib/CHANGELOG.md @@ -0,0 +1,25 @@ +# medmark + +## 0.2.0 + +### Minor Changes + +- [#20](https://github.com/brionmario/medmark/pull/20) + [`9ff5d76`](https://github.com/brionmario/medmark/commit/9ff5d7641811aa18154ca5802992b2feab5ddf8e) Thanks + [@brionmario](https://github.com/brionmario)! - Add ability to init Medmark by executing `medmark init`. + + ```bash + medmark init + ``` + + This will do the following. + + - Create a `.medmark` folder at the root of the execution with the following folder structure. + + ```bash + ├── .medmark + │ ├── medium-export # Should extract the medium archive here. + │ │ ├── .gitkeep + │ ├── templates # Should contain the templates for Medmark. + │ │ ├── sample-medmark-template.js + ``` diff --git a/lib/package.json b/lib/package.json index 04ee5d5..98902ec 100644 --- a/lib/package.json +++ b/lib/package.json @@ -1,6 +1,6 @@ { "name": "medmark", - "version": "0.1.1", + "version": "0.2.0", "description": "Export your Medium articles to markdown(md).", "keywords": [ "medium", diff --git a/playground/CHANGELOG.md b/playground/CHANGELOG.md new file mode 100644 index 0000000..4d4c0c6 --- /dev/null +++ b/playground/CHANGELOG.md @@ -0,0 +1,25 @@ +# medmark-playground + +## 0.2.0 + +### Minor Changes + +- [#20](https://github.com/brionmario/medmark/pull/20) + [`9ff5d76`](https://github.com/brionmario/medmark/commit/9ff5d7641811aa18154ca5802992b2feab5ddf8e) Thanks + [@brionmario](https://github.com/brionmario)! - Add ability to init Medmark by executing `medmark init`. + + ```bash + medmark init + ``` + + This will do the following. + + - Create a `.medmark` folder at the root of the execution with the following folder structure. + + ```bash + ├── .medmark + │ ├── medium-export # Should extract the medium archive here. + │ │ ├── .gitkeep + │ ├── templates # Should contain the templates for Medmark. + │ │ ├── sample-medmark-template.js + ``` diff --git a/playground/package.json b/playground/package.json index 3e3c30d..9c30c8e 100644 --- a/playground/package.json +++ b/playground/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "medmark-playground", - "version": "0.1.0", + "version": "0.2.0", "description": "Playground to test out Medmark features", "author": "Brion Mario (https://brionmario.com/)", "license": "MIT",