Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for next release #157

Merged
merged 1 commit into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/short-monkeys-crash.md

This file was deleted.

6 changes: 6 additions & 0 deletions plugins/wptelegram/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 4.1.12

### Patch Changes

- [#156](https://github.com/wpsocio/wp-projects/pull/156) [`d14a2f9`](https://github.com/wpsocio/wp-projects/commit/d14a2f9f13087a18c184a0ca23a2f981288ffe5e) Thanks [@irshadahmad21](https://github.com/irshadahmad21)! - Fixed Message Template info not expanding

## 4.1.11

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/wptelegram/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
**Requires at least:** 6.4
**Requires PHP:** 7.4
**Tested up to:** 6.6.1
**Stable tag:** 4.1.11
**Stable tag:** 4.1.12
**License:** GPL-3.0-or-later
**License URI:** [https://www.gnu.org/licenses/gpl-3.0.html](https://www.gnu.org/licenses/gpl-3.0.html)
**Donate link:** [wpsocio.com/donate](https://wpsocio.com/donate)
Expand Down
2 changes: 1 addition & 1 deletion plugins/wptelegram/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wpsocio/wptelegram",
"version": "4.1.11",
"version": "4.1.12",
"description": "Integrate your WordPress site perfectly with Telegram with full control.",
"scripts": {
"lint": "\"vendor/bin/phpcs\" --standard=../../phpcs.xml --extensions=php src/ dev.php",
Expand Down
2 changes: 1 addition & 1 deletion plugins/wptelegram/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "wptelegram",
"title": "WP Telegram",
"version": "4.1.11",
"version": "4.1.12",
"description": "Integrate your WordPress site perfectly with Telegram with full control.",
"private": true,
"license": "GPL-3.0-or-later",
Expand Down
6 changes: 3 additions & 3 deletions plugins/wptelegram/src/languages/wptelegram.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
# This file is distributed under the GPL-2.0+.
msgid ""
msgstr ""
"Project-Id-Version: WP Telegram 4.1.11\n"
"Project-Id-Version: WP Telegram 4.1.12\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wptelegram\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2024-08-01T11:06:28+00:00\n"
"POT-Creation-Date: 2024-08-06T05:25:14+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.11.0-alpha-9a91926\n"
"X-Generator: WP-CLI 2.11.0-alpha-b8e5d35\n"
"language: en_US\n"
"X-Poedit-Basepath: ..\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
Expand Down
6 changes: 3 additions & 3 deletions plugins/wptelegram/src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: telegram, notifications, posts, channel, group
Requires at least: 6.4
Requires PHP: 7.4
Tested up to: 6.6.1
Stable tag: 4.1.11
Stable tag: 4.1.12
License: GPL-3.0-or-later
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -203,7 +203,7 @@ Automatic updates should work smoothly, but we still recommend you back up your

== Changelog ==

= 4.1.11 =
- Fixed settings page and post editor crash for older Wp versions
= 4.1.12 =
- Fixed Message Template info not expanding

[See full changelog](https://github.com/wpsocio/wptelegram/blob/main/CHANGELOG.md)
4 changes: 2 additions & 2 deletions plugins/wptelegram/src/wptelegram.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Plugin Name: WP Telegram
* Plugin URI: https://t.me/WPTelegram
* Description: Integrate your WordPress website perfectly with Telegram. Send posts automatically to Telegram when published or updated, whether to a Telegram Channel, Group or private chat, with full control. Get your email notifications on Telegram.
* Version: 4.1.11
* Version: 4.1.12
* Requires at least: 6.4
* Requires PHP: 7.4
* Author: WP Socio
Expand All @@ -26,7 +26,7 @@
die;
}

define( 'WPTELEGRAM_VER', '4.1.11' );
define( 'WPTELEGRAM_VER', '4.1.12' );

defined( 'WPTELEGRAM_MAIN_FILE' ) || define( 'WPTELEGRAM_MAIN_FILE', __FILE__ );

Expand Down
Loading