diff --git a/CHANGELOG.md b/CHANGELOG.md index 05dc56a..d59bcdf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,16 +13,34 @@ All notable changes to this project will be documented in this file, per [the Ke ### Security --> + +## 1.1.2 - 2024-04-20 + +### Added +* GitHub Workflow: Push Releases to SVN Repository by @michael-sumner in #5 + +### Changed +* Docs by @michael-sumner in #4 + + +## 1.1.0 - 2024-04-19 + +### Changed +* Convert Timestamp Block into a Dynamic Block by @michael-sumner in #2 + + ## 1.1.1 - 2024-04-19 ### Changed * Fix Changelog Issues by @michael-sumner in #3 + ## 1.1.0 - 2024-04-19 ### Changed * Convert Timestamp Block into a Dynamic Block by @michael-sumner in #2 + ## 1.0.0 - Unknown - Initial plugin release diff --git a/package.json b/package.json index 0879501..85a49fc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "timestamps-plugin", - "version": "1.1.1", + "version": "1.1.2", "description": "Timestamp your WordPress content to empower your content authenticity and increase user trust with our blockchain timestamping solution.", "homepage": "https://www.scoredetect.com/", "repository": { diff --git a/readme.txt b/readme.txt index 2f9131b..4bd3203 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: timestamp, blockchain, content, authenticity, copyright, timestamps, prote Requires at least: 6.0.0 Tested up to: 6.5.2 Requires PHP: 7.4 -Stable tag: 1.1.1 +Stable tag: 1.1.2 License: AGPL-3.0-only License URI: https://spdx.org/licenses/AGPL-3.0-only.html diff --git a/timestamps.php b/timestamps.php index 458f0df..4b83063 100644 --- a/timestamps.php +++ b/timestamps.php @@ -8,13 +8,13 @@ * that starts the plugin. * * @link https://www.scoredetect.com/ - * @since 1.1.1 + * @since 1.1.2 * @package SDCOM_Timestamps * * @wordpress-plugin * Plugin Name: Timestamps * Description: Timestamp your WordPress content to empower your content authenticity and increase user trust with our blockchain timestamping solution. - * Version: 1.1.1 + * Version: 1.1.2 * Author: ScoreDetect.com * Author URI: https://www.scoredetect.com/ * License: AGPL-3.0-only @@ -31,7 +31,7 @@ } // Useful global constants. -define( 'SDCOM_TIMESTAMPS_VERSION', '1.1.1' ); +define( 'SDCOM_TIMESTAMPS_VERSION', '1.1.2' ); define( 'SDCOM_TIMESTAMPS_OPTIONS', 'sdcom_timestamps' ); define( 'SDCOM_TIMESTAMPS_URL', plugin_dir_url( __FILE__ ) ); define( 'SDCOM_TIMESTAMPS_PATH', plugin_dir_path( __FILE__ ) );