diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5621e37..45d15fa 100755
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+
+# [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.
+
# [3.0.1](https://github.com/flextype-plugins/sitemap/compare/v3.0.0...v3.0.1) (2022-07-11)
diff --git a/README.md b/README.md
index 04157fe..ec5c08d 100755
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
Sitemap Plugin for Flextype
-
+
Sitemap plugin provide automatically generated XML sitemap for Flextype.
@@ -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
diff --git a/plugin.yaml b/plugin.yaml
index 25b2765..27f6ca2 100755
--- a/plugin.yaml
+++ b/plugin.yaml
@@ -1,5 +1,5 @@
name: Sitemap
-version: 3.0.1
+version: 3.1.0
description: Provide automatically generated XML sitemap.
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..cd3548b
--- /dev/null
+++ b/release.sh
@@ -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/";
\ No newline at end of file