From a05dfc60e73e1b88ff3906274b527b5e0d39dc6d Mon Sep 17 00:00:00 2001 From: Gabe Appleton Date: Tue, 1 Nov 2016 22:53:20 -0400 Subject: [PATCH] Increment version number --- cp_src/base.h | 2 +- js_src/base.js | 2 +- package.json | 2 +- py_src/base.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cp_src/base.h b/cp_src/base.h index 05236d9..13f9f4f 100644 --- a/cp_src/base.h +++ b/cp_src/base.h @@ -10,7 +10,7 @@ #define CP2P_PROTOCOL_MAJOR_VERSION 0 #define CP2P_PROTOCOL_MINOR_VERSION 4 -#define CP2P_NODE_VERSION 319 +#define CP2P_NODE_VERSION 516 #define CP2P_VERSION CP2P__STR__(CP2P_PROTOCOL_MAJOR_VERSION) "." CP2P__STR__(CP2P_PROTOCOL_MINOR_VERSION) "." CP2P__STR__(CP2P_NODE_VERSION) /** * .. c:macro:: CP2P_PROTOCOL_MAJOR_VERSION diff --git a/js_src/base.js b/js_src/base.js index 2405aec..e02e935 100644 --- a/js_src/base.js +++ b/js_src/base.js @@ -64,7 +64,7 @@ else { * This is :js:data:`~js2p.base.version_info` joined in the format ``'a.b.c'`` */ -base.version_info = [0, 4, 470]; +base.version_info = [0, 4, 516]; base.node_policy_version = base.version_info[2].toString(); base.protocol_version = base.version_info.slice(0, 2).join("."); base.version = base.version_info.join('.'); diff --git a/package.json b/package.json index 136a627..e238e0e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "js2p", "main": "js_src/js2p.js", - "version": "0.4.470", + "version": "0.4.516", "license": "LGPL-3.0", "repository": { "type": "git", diff --git a/py_src/base.py b/py_src/base.py index 17e75d8..43fce73 100644 --- a/py_src/base.py +++ b/py_src/base.py @@ -18,7 +18,7 @@ from .utils import (getUTC, intersect, get_lan_ip, get_socket, sanitize_packet) protocol_version = "0.4" -node_policy_version = "470" +node_policy_version = "516" version = '.'.join([protocol_version, node_policy_version])