From 2f70456e9af3bc9a7c2354c5267854ee23409b59 Mon Sep 17 00:00:00 2001 From: El RIDO Date: Tue, 28 Oct 2025 16:08:13 +0100 Subject: [PATCH] incrementing version --- CHANGELOG.md | 4 +++- Makefile | 2 +- README.md | 2 +- SECURITY.md | 4 ++-- doc/Installation.md | 2 +- js/package.json | 2 +- lib/Controller.php | 2 +- 7 files changed, 10 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a11d4cc..6897e35d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,11 @@ # PrivateBin version history -## 2.0.2 (not yet released) +## 2.0.2 (2025-10-28) * CHANGED: Upgrading libraries to: DOMpurify 3.3.0 * CHANGED: Refactored jQuery DOM element creation into plain JavaScript * FIXED: Sanitize file name in attachment size hint +* FIXED: PHP OPcache module is optional again (#1679) +* FIXED: bootstrap template password peek input group display ## 2.0.1 (2025-10-12) * ADDED: Auto shorten URLs with config option `shortenbydefault` (#1627) diff --git a/Makefile b/Makefile index 6e5fc75f..1384fd78 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ .PHONY: all coverage coverage-js coverage-php doc doc-js doc-php increment sign test test-js test-php help -CURRENT_VERSION = 2.0.1 +CURRENT_VERSION = 2.0.2 VERSION ?= 2.0.2 VERSION_FILES = README.md SECURITY.md doc/Installation.md js/package.json lib/Controller.php Makefile REGEX_CURRENT_VERSION := $(shell echo $(CURRENT_VERSION) | sed "s/\./\\\./g") diff --git a/README.md b/README.md index 8f508758..e3bf3346 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # [![PrivateBin](https://cdn.rawgit.com/PrivateBin/assets/master/images/preview/logoSmall.png)](https://privatebin.info/) -*Current version: 2.0.1* +*Current version: 2.0.2* **PrivateBin** is a minimalist, open source online [pastebin](https://en.wikipedia.org/wiki/Pastebin) diff --git a/SECURITY.md b/SECURITY.md index b0846030..9e05fa43 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,8 +4,8 @@ | Version | Supported | | ------- | ------------------ | -| 2.0.1 | :heavy_check_mark: | -| < 2.0.1 | :x: | +| 2.0.2 | :heavy_check_mark: | +| < 2.0.2 | :x: | ## Reporting a Vulnerability diff --git a/doc/Installation.md b/doc/Installation.md index 36d3365e..355b2f2d 100644 --- a/doc/Installation.md +++ b/doc/Installation.md @@ -203,7 +203,7 @@ CREATE INDEX parent ON prefix_comment(pasteid); CREATE TABLE prefix_config ( id CHAR(16) NOT NULL, value TEXT, PRIMARY KEY (id) ); -INSERT INTO prefix_config VALUES('VERSION', '2.0.1'); +INSERT INTO prefix_config VALUES('VERSION', '2.0.2'); ``` In **PostgreSQL**, the `data`, `attachment`, `nickname` and `vizhash` columns diff --git a/js/package.json b/js/package.json index 4f11bf2e..c9af5ad2 100644 --- a/js/package.json +++ b/js/package.json @@ -1,6 +1,6 @@ { "name": "privatebin", - "version": "2.0.1", + "version": "2.0.2", "description": "PrivateBin is a minimalist, open source online pastebin where the server has zero knowledge of stored data. Data is encrypted/decrypted in the browser using 256 bit AES in Galois Counter mode (GCM).", "main": "privatebin.js", "directories": { diff --git a/lib/Controller.php b/lib/Controller.php index 2f905469..3d316687 100644 --- a/lib/Controller.php +++ b/lib/Controller.php @@ -30,7 +30,7 @@ class Controller * * @const string */ - const VERSION = '2.0.1'; + const VERSION = '2.0.2'; /** * minimal required PHP version