incrementing version

This commit is contained in:
El RIDO 2026-07-11 10:17:36 +02:00
parent 75f056dcda
commit 3035d6e5d3
No known key found for this signature in database
GPG key ID: 0F5C940A6BD81F92
7 changed files with 9 additions and 9 deletions

View file

@ -1,6 +1,6 @@
# PrivateBin version history # PrivateBin version history
## 2.0.5 (not yet released) ## 2.0.5 (2026-07-11)
* CHANGED: Show OS-specific copy hotkey hint (Cmd+c on Mac, Ctrl+c on others) (#1506) * CHANGED: Show OS-specific copy hotkey hint (Cmd+c on Mac, Ctrl+c on others) (#1506)
* FIXED: Prevent browsers from rendering unsafe attachments like HTML in a new tab * FIXED: Prevent browsers from rendering unsafe attachments like HTML in a new tab
* FIXED: State corruption after "Remove attachment" (#1824) * FIXED: State corruption after "Remove attachment" (#1824)

View file

@ -1,7 +1,7 @@
.PHONY: all coverage coverage-js coverage-php doc doc-js doc-php increment sign test test-js test-php help .PHONY: all coverage coverage-js coverage-php doc doc-js doc-php increment sign test test-js test-php help
CURRENT_VERSION = 2.0.4 CURRENT_VERSION = 2.0.5
VERSION ?= 2.0.5 VERSION ?= 2.0.6
VERSION_FILES = README.md SECURITY.md doc/Installation.md js/package.json lib/Controller.php Makefile 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") REGEX_CURRENT_VERSION := $(shell echo $(CURRENT_VERSION) | sed "s/\./\\\./g")
REGEX_VERSION := $(shell echo $(VERSION) | sed "s/\./\\\./g") REGEX_VERSION := $(shell echo $(VERSION) | sed "s/\./\\\./g")

View file

@ -1,6 +1,6 @@
# [![PrivateBin](https://raw.githubusercontent.com/PrivateBin/assets/master/images/preview/logoSmall.png)](https://privatebin.info/) # [![PrivateBin](https://raw.githubusercontent.com/PrivateBin/assets/master/images/preview/logoSmall.png)](https://privatebin.info/)
*Current version: 2.0.4* *Current version: 2.0.5*
**PrivateBin** is a minimalist, open source online **PrivateBin** is a minimalist, open source online
[pastebin](https://en.wikipedia.org/wiki/Pastebin) [pastebin](https://en.wikipedia.org/wiki/Pastebin)

View file

@ -4,8 +4,8 @@
| Version | Supported | | Version | Supported |
| ------- | ------------------ | | ------- | ------------------ |
| 2.0.4 | :heavy_check_mark: | | 2.0.5 | :heavy_check_mark: |
| < 2.0.4 | :x: | | < 2.0.5 | :x: |
## Reporting a Vulnerability ## Reporting a Vulnerability

View file

@ -206,7 +206,7 @@ CREATE INDEX parent ON prefix_comment(pasteid);
CREATE TABLE prefix_config ( CREATE TABLE prefix_config (
id CHAR(16) NOT NULL, value TEXT, PRIMARY KEY (id) id CHAR(16) NOT NULL, value TEXT, PRIMARY KEY (id)
); );
INSERT INTO prefix_config VALUES('VERSION', '2.0.4'); INSERT INTO prefix_config VALUES('VERSION', '2.0.5');
``` ```
In **PostgreSQL**, the `data`, `attachment`, `nickname` and `vizhash` columns In **PostgreSQL**, the `data`, `attachment`, `nickname` and `vizhash` columns

View file

@ -1,6 +1,6 @@
{ {
"name": "privatebin", "name": "privatebin",
"version": "2.0.4", "version": "2.0.5",
"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).", "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", "main": "privatebin.js",
"directories": { "directories": {

View file

@ -32,7 +32,7 @@ class Controller
* *
* @const string * @const string
*/ */
const VERSION = '2.0.4'; const VERSION = '2.0.5';
/** /**
* minimal required PHP version * minimal required PHP version