Skip to content

Commit

Permalink
Sitemap 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Awilum committed Sep 13, 2022
1 parent 521303d commit 76af502
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
<a name="3.1.0"></a>
# [3.1.0](https://github.com/flextype-plugins/sitemap/compare/v3.0.1...v3.1.0) (2022-09-13)

### Features

* **core** Update code base for new Flextype 1.0.0-alpha.2 release.

<a name="3.0.1"></a>
# [3.0.1](https://github.com/flextype-plugins/sitemap/compare/v3.0.0...v3.0.1) (2022-07-11)

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<h1 align="center">Sitemap Plugin for <a href="https://awilum.github.io/flextype">Flextype</a></h1>

<p align="center">
<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/sitemap?label=Stars"> <img alt="GitHub forks" src="https://img.shields.io/github/forks/flextype-plugins/sitemap?label=Forks"> <a href="https://hitsofcode.com"><img alt="Hits of Code" src="https://hitsofcode.com/github/flextype-plugins/sitemap?branch=3.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>
<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/sitemap?label=Stars"> <img alt="GitHub forks" src="https://img.shields.io/github/forks/flextype-plugins/sitemap?label=Forks"> <a href="https://hitsofcode.com"><img alt="Hits of Code" src="https://hitsofcode.com/github/flextype-plugins/sitemap?branch=3.x"></a>
</p>

Sitemap plugin provide automatically generated XML sitemap for Flextype.
Expand All @@ -12,8 +12,8 @@ The following dependencies need to be downloaded and installed for Sitemap Plugi

| 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

Expand Down
6 changes: 3 additions & 3 deletions plugin.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Sitemap
version: 3.0.1
version: 3.1.0
description: Provide automatically generated XML sitemap.
author:
name: Sergey Romanenko
Expand All @@ -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"
17 changes: 17 additions & 0 deletions release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Release build script for Sitemap Plugin
# Copyright (c) Sergey Romanenko
# usage: bash release.sh [version]

name="sitemap";
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/";

0 comments on commit 76af502

Please sign in to comment.