Skip to content

Commit

Permalink
Increment version number
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Nov 2, 2016
1 parent 3ad9534 commit a05dfc6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cp_src/base.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion js_src/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -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('.');
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion py_src/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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])

Expand Down

0 comments on commit a05dfc6

Please sign in to comment.