Skip to content

Commit

Permalink
bump version to v1.2.0 + update readme and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Koorosh14 committed Mar 5, 2024
1 parent b3c44a2 commit dc518bb
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 9 deletions.
24 changes: 18 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,24 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
### Fixed
### Security

## [v1.2.0] - 2024-03-06
### Changed
- Changed project name.
- Re-format/refactor everything.
- Renamed `Views` class to `View` + Updated the `View` class + Renamed `templates/` folder to `views/`.
- Renamed `Settings` class to `Setting` + Updated the `Setting` class + Updated settings views.
- Changed method and variable names to camelCase.
- Changed API endpoints to kebab-case.
- Renamed `/app` folder to `src/`.
- Updated `.gitignore`.
### Fixed
- Removed invalid call to `getStartButtons()` method from /cancel command.

## [v1.1.0] - 2023-06-05
### Notes
- [:ledger: View file changes][v1.1.0]
### Added
- Proxy (middleman server) support
- This changelog file
- Added proxy (middleman server) support.
- Added this changelog file.

[Unreleased]: https://GitHub.com/Koorosh14/boilerplate-telegram-bot-plugin/compare/v1.1.0...main
[v1.1.0]: https://GitHub.com/Koorosh14/boilerplate-telegram-bot-plugin/compare/v1.0.0...v1.1.0
[Unreleased]: https://GitHub.com/FourteenDev/telegram-bot-wordpress-plugin-boilerplate/compare/v1.2.0...main
[v1.2.0]: https://GitHub.com/FourteenDev/telegram-bot-wordpress-plugin-boilerplate/compare/v1.1.0...v1.2.0
[v1.1.0]: https://GitHub.com/FourteenDev/telegram-bot-wordpress-plugin-boilerplate/compare/v1.0.0...v1.1.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Telegram Bot WordPress Plugin Boilerplate

`v1.1.0` ([Changelog](CHANGELOG.md))
`v1.2.0` ([Changelog](CHANGELOG.md))

Libraries used: [PHP Telegram Bot](https://GitHub.com/php-telegram-bot/core)

Expand Down
4 changes: 2 additions & 2 deletions plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin Name: Telegram Bot WordPress Plugin Boilerplate
* Plugin URI: https://GitHub.com/FourteenDev/telegram-bot-wordpress-plugin-boilerplate
* Description: A boilerplate plugin for connecting a Telegram bot to your WordPress website.
* Version: 1.1.0
* Version: 1.2.0
* Author: Fourteen Development
* Author URI: https://Fourteen.dev/
* License: MIT
Expand All @@ -17,7 +17,7 @@

if (!defined('ABSPATH')) return;

define('FDTBWPB_VERSION', '1.1.0');
define('FDTBWPB_VERSION', '1.2.0');
define('FDTBWPB_FILE', __FILE__);
define('FDTBWPB_URL', plugin_dir_url(FDTBWPB_FILE));
define('FDTBWPB_DIR', plugin_dir_path(FDTBWPB_FILE));
Expand Down

0 comments on commit dc518bb

Please sign in to comment.