From f39509d45e03ef766283ac03dc1dffe4bf419b05 Mon Sep 17 00:00:00 2001 From: objecttothis Date: Fri, 18 Nov 2022 10:20:00 +0400 Subject: [PATCH] Bump to version 3.4.0 --- CHANGELOG.md | 7 ++++--- app/Config/App.php | 2 +- bower.json | 2 +- docker-compose.nginx.yml | 2 +- docker-compose.yml | 2 +- package-lock.json | 2 +- package.json | 5 +++-- 7 files changed, 12 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index db77d6e8f..4d4c334f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -[unreleased]: https://github.com/opensourcepos/opensourcepos/compare/3.3.8...HEAD +[3.4.0]: https://github.com/opensourcepos/opensourcepos/compare/3.3.8...3.4.0 [3.3.7]: https://github.com/opensourcepos/opensourcepos/compare/3.3.7...3.3.8 [3.3.6]: https://github.com/opensourcepos/opensourcepos/compare/3.3.6...3.3.7 [3.3.5]: https://github.com/opensourcepos/opensourcepos/compare/3.3.4...3.3.5 @@ -27,11 +27,12 @@ All notable changes to this project will be documented here. -## [Unreleased] +## [3.4.0] List of changes in the `master` branch. -- N/A +- Bump framework to CodeIgniter 4.1.3 +- Improve security performance against bots. ## [3.3.8] - 2022-04-26 diff --git a/app/Config/App.php b/app/Config/App.php index 2174d6b07..3b6d398ef 100644 --- a/app/Config/App.php +++ b/app/Config/App.php @@ -11,7 +11,7 @@ class App extends BaseConfig * * @var string */ - public $application_version = '4.0.0'; + public $application_version = '3.4.0'; /** * This is the commit hash for the version you are currently using. diff --git a/bower.json b/bower.json index a6ac1485f..a088e0d00 100644 --- a/bower.json +++ b/bower.json @@ -1,7 +1,7 @@ { "name": "opensourcepos", "description": "Open Source Point of Sale is a web-based POS system written in the PHP language. It uses MySQL as backend and has a simple user interface", - "version": "4.0.0", + "version": "3.4.0", "license": "MIT", "authors": [ "jekkos ", diff --git a/docker-compose.nginx.yml b/docker-compose.nginx.yml index 4fe6e78c9..8d34b4e3e 100644 --- a/docker-compose.nginx.yml +++ b/docker-compose.nginx.yml @@ -14,7 +14,7 @@ networks: services: ospos: - image: jekkos/opensourcepos:4.0.0 + image: jekkos/opensourcepos:3.4.0 restart: always depends_on: - mysql diff --git a/docker-compose.yml b/docker-compose.yml index c7c76725e..d5e63a948 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -17,7 +17,7 @@ services: image: jekkos/opensourcepos:sqlscript command: /bin/sh -c 'exit 0' ospos: - image: jekkos/opensourcepos:4.0.0 + image: jekkos/opensourcepos:3.4.0 restart: always depends_on: - mysql diff --git a/package-lock.json b/package-lock.json index 7aa616276..39791de63 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "opensourcepos", - "version": "3.3.8", + "version": "3.4.0", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 31eb8f6ae..8f5e55055 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,13 @@ { "name": "opensourcepos", - "version": "4.0.0", + "version": "3.4.0", "description": "Open Source Point of Sale is a web based point of sale system written in the PHP language. It uses MySQL as the data storage back-end and has a simple user interface.", "main": "index.php", "license": "MIT", "authors": [ "jekkos ", - "FrancescoUK " + "FrancescoUK ", + "objecttothis " ], "scripts": { "install": "composer install & bower install",