diff --git a/Makefile b/Makefile index 86165d7c..0a5c2ed8 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .PHONY: all coverage coverage-js coverage-php doc doc-js doc-php increment sign test test-js test-php help -CURRENT_VERSION = 2.0.3 -VERSION ?= 2.0.4 +CURRENT_VERSION = 2.0.4 +VERSION ?= 2.0.5 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_VERSION := $(shell echo $(VERSION) | sed "s/\./\\\./g") diff --git a/README.md b/README.md index 9ceba771..203c4a92 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # [![PrivateBin](https://raw.githubusercontent.com/PrivateBin/assets/master/images/preview/logoSmall.png)](https://privatebin.info/) -*Current version: 2.0.3* +*Current version: 2.0.4* **PrivateBin** is a minimalist, open source online [pastebin](https://en.wikipedia.org/wiki/Pastebin) diff --git a/SECURITY.md b/SECURITY.md index 5b37c50d..250c7e6e 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,8 +4,8 @@ | Version | Supported | | ------- | ------------------ | -| 2.0.3 | :heavy_check_mark: | -| < 2.0.3 | :x: | +| 2.0.4 | :heavy_check_mark: | +| < 2.0.4 | :x: | ## Reporting a Vulnerability diff --git a/doc/Installation.md b/doc/Installation.md index c31a1f5d..14cb24ec 100644 --- a/doc/Installation.md +++ b/doc/Installation.md @@ -206,7 +206,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.3'); +INSERT INTO prefix_config VALUES('VERSION', '2.0.4'); ``` In **PostgreSQL**, the `data`, `attachment`, `nickname` and `vizhash` columns diff --git a/js/package.json b/js/package.json index 3712f9b3..260bf12c 100644 --- a/js/package.json +++ b/js/package.json @@ -1,6 +1,6 @@ { "name": "privatebin", - "version": "2.0.3", + "version": "2.0.4", "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 4672c3c2..c43126eb 100644 --- a/lib/Controller.php +++ b/lib/Controller.php @@ -32,7 +32,7 @@ class Controller * * @const string */ - const VERSION = '2.0.3'; + const VERSION = '2.0.4'; /** * minimal required PHP version