diff --git a/README.md b/README.md index 42ea1a4..c067a28 100755 --- a/README.md +++ b/README.md @@ -12,10 +12,10 @@ The following dependencies need to be downloaded and installed for Site Plugin. | Item | Version | Download | |---|---|---| -| [flextype](https://github.com/flextype/flextype) | ^1.0.0-alpha.1 | [download](https://github.com/flextype/flextype/releases) | -| [twig](https://github.com/flextype-plugins/twig) | ^3.0.0 | [download](https://github.com/flextype-plugins/twig/releases) | +| [flextype](https://github.com/flextype/flextype) | ^1.0.0-alpha.2 | [download](https://github.com/flextype/flextype/releases) | +| [twig](https://github.com/flextype-plugins/twig) | ^3.1.0 | [download](https://github.com/flextype-plugins/twig/releases) | -* twig plugin is optional dependency. +* [twig](https://github.com/flextype-plugins/twig) plugin is optional dependency. ## Installation diff --git a/plugin.yaml b/plugin.yaml index 07d7a2c..7a3c447 100755 --- a/plugin.yaml +++ b/plugin.yaml @@ -1,5 +1,5 @@ name: Site -version: 2.0.3 +version: 2.1.0 description: Site plugin to display entries content on the website frontend. icon: name: globe @@ -14,4 +14,4 @@ bugs: https://github.com/flextype-plugins/site/issues license: MIT dependencies: - flextype: "^1.0.0-alpha.1" \ No newline at end of file + flextype: "^1.0.0-alpha.2" \ No newline at end of file diff --git a/release.sh b/release.sh index 8742818..9a957c9 100644 --- a/release.sh +++ b/release.sh @@ -7,7 +7,7 @@ curl "https://github.com/flextype-plugins/site/archive/refs/tags/v$version.zip" unzip "v$version.zip"; rm "v$version.zip"; cd "site-$version"; -composer update; +composer install --no-dev; rm -rf __MACOSX; find . -name '.DS_Store' -type f -delete; zip -r "site-$version.zip" . ;