Skip to content

Commit c025b3d

Browse files
committed
Feed 2.1.0
1 parent 38e3af5 commit c025b3d

File tree

4 files changed

+29
-6
lines changed

4 files changed

+29
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# v2.1.0, 2022-09-13
2+
3+
### Features
4+
5+
* **core** Updated code base for new Flextype 1.0.0-alpha.2
6+
17
# v2.0.0, 2022-07-11
28

39
### Features

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<h1 align="center">Feed Plugin for <a href="https://awilum.github.io/flextype">Flextype</a></h1>
22

33
<p align="center">
4-
<img src="https://img.shields.io/badge/license-MIT-blue.svg?label=License" alt="License MIT"> <img alt="GitHub Repo stars" src="https://img.shields.io/github/stars/flextype-plugins/feed?label=Stars"> <img alt="GitHub forks" src="https://img.shields.io/github/forks/flextype-plugins/feed?label=Forks"> <a href="https://hitsofcode.com"><img alt="Hits of Code" src="https://hitsofcode.com/github/flextype-plugins/feed?branch=2.x"></a> <a href="https://discord.gg/ewQkqgfBAc"><img src="https://img.shields.io/discord/423097982498635778.svg?logo=discord&label=Discord%20Chat" alt="Discord"></a>
4+
<img src="https://img.shields.io/badge/license-MIT-blue.svg?label=License" alt="License MIT"> <img alt="GitHub Repo stars" src="https://img.shields.io/github/stars/flextype-plugins/feed?label=Stars"> <img alt="GitHub forks" src="https://img.shields.io/github/forks/flextype-plugins/feed?label=Forks"> <a href="https://hitsofcode.com"><img alt="Hits of Code" src="https://hitsofcode.com/github/flextype-plugins/feed?branch=2.x"></a>
55
</p>
66

77
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.
1212

1313
| Item | Version | Download |
1414
|---|---|---|
15-
| [flextype](https://github.com/flextype/flextype) | ^1.0.0-alpha.1 | [download](https://github.com/flextype/flextype/releases) |
16-
| [twig](https://github.com/flextype-plugins/twig) | ^3.0.0 | [download](https://github.com/flextype-plugins/twig/releases) |
15+
| [flextype](https://github.com/flextype/flextype) | ^1.0.0-alpha.2 | [download](https://github.com/flextype/flextype/releases) |
16+
| [twig](https://github.com/flextype-plugins/twig) | ^3.1.0 | [download](https://github.com/flextype-plugins/twig/releases) |
1717

1818
## Installation
1919

plugin.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Feed
2-
version: 2.0.0
2+
version: 2.1.0
33
description: Feed plugin for Flextype supports Atom 1.0, RSS and JSON feed types and allows you to generate feeds for entries.
44
author:
55
name: Sergey Romanenko
@@ -16,5 +16,5 @@ category: seo
1616
license: MIT
1717

1818
dependencies:
19-
flextype: "^1.0.0-alpha.1"
20-
twig: "^3.0.0"
19+
flextype: "^1.0.0-alpha.2"
20+
twig: "^3.1.0"

release.sh

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Release build script for Feed Plugin
2+
# Copyright (c) Sergey Romanenko
3+
# usage: bash release.sh [version]
4+
5+
name="feed";
6+
version="$1";
7+
curl "https://github.com/flextype-plugins/$name/archive/refs/tags/v$version.zip" -L -O;
8+
unzip "v$version.zip";
9+
rm "v$version.zip";
10+
cd "$name-$version";
11+
composer install --no-dev;
12+
rm -rf __MACOSX;
13+
find . -name '.DS_Store' -type f -delete;
14+
zip -r "$name-$version.zip" . ;
15+
cd ../;
16+
mv "$name-$version/$name-$version.zip" .;
17+
rm -r "$name-$version/";

0 commit comments

Comments
 (0)