diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e3f41b20..64647940f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ # 📖 Change Log +## [v2.6.0](https://github.com/torrentpier/torrentpier/compare/v2.5.0..v2.6.0) (2025-06-18) + +### 🚀 Features + +- [**breaking**] Implement unified cache system with Nette Caching ([#1963](https://github.com/torrentpier/torrentpier/pull/1963)) - ([07a06a3](https://github.com/torrentpier/torrentpier/commit/07a06a33cd97b37f68b533a87cdb5f7578f2c86f)) +- Replace legacy database layer with Nette Database implementation ([#1961](https://github.com/torrentpier/torrentpier/pull/1961)) - ([f50b914](https://github.com/torrentpier/torrentpier/commit/f50b914cc18f777d92002baf2c812a635d5eed4b)) + +### 🐛 Bug Fixes + +- *(User)* Add null and array checks before session data operations ([#1962](https://github.com/torrentpier/torrentpier/pull/1962)) - ([e458109](https://github.com/torrentpier/torrentpier/commit/e458109eefc54d86a78a1ddb3954581524852516)) + + ## [v2.5.0](https://github.com/torrentpier/torrentpier/compare/v2.4.6-alpha.4..v2.5.0) (2025-06-18) ### 🚀 Features diff --git a/library/config.php b/library/config.php index 2258220db..c360d56f6 100644 --- a/library/config.php +++ b/library/config.php @@ -18,7 +18,7 @@ $reserved_port = env('TP_PORT', 80); $bb_cfg = []; // Version info -$bb_cfg['tp_version'] = 'v2.5.0'; +$bb_cfg['tp_version'] = 'v2.6.0'; $bb_cfg['tp_release_date'] = '18-06-2025'; $bb_cfg['tp_release_codename'] = 'Cattle';