diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c7ee9b..572afeb 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# v2.1.0, 2022-09-13 + +### Features + +* **core** Updated code base for new Flextype 1.0.0-alpha.2 + # v2.0.0, 2022-07-11 ### Features diff --git a/README.md b/README.md index 2708ab6..e45cc36 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@

Feed Plugin for Flextype

-License MIT GitHub Repo stars GitHub forks Hits of Code Discord +License MIT GitHub Repo stars GitHub forks Hits of Code

Feed plugin for Flextype supports Atom 1.0, RSS and JSON feed types and allows you to generate feeds for entries. @@ -12,8 +12,8 @@ The following dependencies need to be downloaded and installed for Feed 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) | ## Installation diff --git a/plugin.yaml b/plugin.yaml index 42de417..312c5e7 100644 --- a/plugin.yaml +++ b/plugin.yaml @@ -1,5 +1,5 @@ name: Feed -version: 2.0.0 +version: 2.1.0 description: Feed plugin for Flextype supports Atom 1.0, RSS and JSON feed types and allows you to generate feeds for entries. author: name: Sergey Romanenko @@ -16,5 +16,5 @@ category: seo license: MIT dependencies: - flextype: "^1.0.0-alpha.1" - twig: "^3.0.0" + flextype: "^1.0.0-alpha.2" + twig: "^3.1.0" diff --git a/release.sh b/release.sh new file mode 100644 index 0000000..da5f423 --- /dev/null +++ b/release.sh @@ -0,0 +1,17 @@ +# Release build script for Feed Plugin +# Copyright (c) Sergey Romanenko +# usage: bash release.sh [version] + +name="feed"; +version="$1"; +curl "https://github.com/flextype-plugins/$name/archive/refs/tags/v$version.zip" -L -O; +unzip "v$version.zip"; +rm "v$version.zip"; +cd "$name-$version"; +composer install --no-dev; +rm -rf __MACOSX; +find . -name '.DS_Store' -type f -delete; +zip -r "$name-$version.zip" . ; +cd ../; +mv "$name-$version/$name-$version.zip" .; +rm -r "$name-$version/"; \ No newline at end of file