El RIDO 13 часов назад
Родитель
Сommit
921ab83f26
6 измененных файлов с 7 добавлено и 7 удалено
  1. 1 1
      Makefile
  2. 1 1
      README.md
  3. 2 2
      SECURITY.md
  4. 1 1
      doc/Installation.md
  5. 1 1
      js/package.json
  6. 1 1
      lib/Controller.php

+ 1 - 1
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.5
+CURRENT_VERSION = 2.0.6
 VERSION ?= 2.0.6
 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")

+ 1 - 1
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.5*
+*Current version: 2.0.6*
 
 **PrivateBin** is a minimalist, open source online
 [pastebin](https://en.wikipedia.org/wiki/Pastebin)

+ 2 - 2
SECURITY.md

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

+ 1 - 1
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.5');
+INSERT INTO prefix_config VALUES('VERSION', '2.0.6');
 ```
 
 In **PostgreSQL**, the `data`, `attachment`, `nickname` and `vizhash` columns

+ 1 - 1
js/package.json

@@ -1,6 +1,6 @@
 {
   "name": "privatebin",
-  "version": "2.0.5",
+  "version": "2.0.6",
   "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": {

+ 1 - 1
lib/Controller.php

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