From ab93d670f4438960c657fb91e137583ba431810d Mon Sep 17 00:00:00 2001 From: Tabea David Date: Thu, 14 Feb 2019 12:06:31 +0100 Subject: [PATCH 1/2] update mkdocs to latest version --- mkdocs.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/mkdocs.yml b/mkdocs.yml index 87a1753..36591c3 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -25,21 +25,3 @@ nav: - Role: commands/role.md - Template: commands/template.md - User: commands/user.md -# The pages configuration setting is deprecated and will issue a warning if set in the configuration file. -# The setting has been renamed nav. -# ReadTheDocs does not know about nav atm, therefore keep `pages` for now -pages: - - wireshell: index.md - - General: - - Changelog: changelog.md - - FAQ: faq.md - - Commands: - - Backup: commands/backup.md - - Common: commands/common.md - - Field: commands/field.md - - Log: commands/log.md - - Module: commands/module.md - - Page: commands/page.md - - Role: commands/role.md - - Template: commands/template.md - - User: commands/user.md From ab30e52cd8d542d7421a802f6aad5b4616034495 Mon Sep 17 00:00:00 2001 From: Tabea David Date: Thu, 14 Feb 2019 12:08:32 +0100 Subject: [PATCH 2/2] increase ws version --- README.md | 2 +- app/wireshell.php | 2 +- docs/changelog.md | 4 ++++ docs/index.md | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 973ba6a..d52cd0b 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # wireshell **ProcessWire command-line companion** -Version 1.0.4, compatibility: ProcessWire 3.x +Version 1.0.5, compatibility: ProcessWire 3.x A command-line interface for CMS/CMF [ProcessWire](https://processwire.com) based on the Symfony Console component. Can be easily extended through ProcessWire's ability of being bootstrapped into other applications, its great [API](https://processwire.com/api/) and diff --git a/app/wireshell.php b/app/wireshell.php index c2db236..d7b9203 100644 --- a/app/wireshell.php +++ b/app/wireshell.php @@ -49,7 +49,7 @@ require __DIR__.'/../vendor/autoload.php'; } -$app = new Application('wireshell - An extendable ProcessWire CLI', '1.0.4'); +$app = new Application('wireshell - An extendable ProcessWire CLI', '1.0.3'); $app->add(new UserCreateCommand()); $app->add(new UserUpdateCommand()); diff --git a/docs/changelog.md b/docs/changelog.md index 95b9712..34db7ee 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -4,6 +4,10 @@ Dates using [ISO 8601 Format](http://www.iso.org/iso/iso8601) (YYYY-MM-DD). Check whether the latest build has passed: [Builds | Read the Docs](https://readthedocs.org/projects/wireshell/builds/) +**1.0.5** (2019-02-14) + +- Update Documentation, increase mkdocs version + **1.0.4** (2019-02-13) - Extends `field:rename` command (add regex pattern options) diff --git a/docs/index.md b/docs/index.md index 17782ad..5089e84 100644 --- a/docs/index.md +++ b/docs/index.md @@ -2,7 +2,7 @@ **ProcessWire command-line companion** -Version 1.0.4, compatibility: ProcessWire 3.x +Version 1.0.5, compatibility: ProcessWire 3.x A command-line interface for CMS/CMF [ProcessWire](https://processwire.com) based on the Symfony Console component. Can be easily extended through ProcessWire's ability of being bootstrapped into other applications, its great [API](https://processwire.com/api/) and