Skip to content

Commit

Permalink
Increment version number
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Jan 1, 2017
1 parent 202fa89 commit a5ce312
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion c_src/base.h
Expand Up @@ -10,7 +10,7 @@

#define C2P_PROTOCOL_MAJOR_VERSION 0
#define C2P_PROTOCOL_MINOR_VERSION 5
#define C2P_NODE_VERSION 551
#define C2P_NODE_VERSION 607
#define C2P_VERSION CP2P__STR__(C2P_PROTOCOL_MAJOR_VERSION) "." CP2P__STR__(C2P_PROTOCOL_MINOR_VERSION) "." CP2P__STR__(C2P_NODE_VERSION)
/**
* .. c:macro:: C2P_PROTOCOL_MAJOR_VERSION
Expand Down
4 changes: 2 additions & 2 deletions go_src/base.go
Expand Up @@ -23,7 +23,7 @@ import (

const protocol_major_version int = 0
const protocol_minor_version int = 5
const node_policy_version int = 551
const node_policy_version int = 607

func pseudo_uuid() (string) {
b := make([]byte, 16)
Expand Down Expand Up @@ -412,4 +412,4 @@ func main() {
fmt.Println(from_feed.bytes())
fmt.Println(string(test_msg.bytes()) == string(from_feed.bytes()))
fmt.Println(string(test_msg.id()))
}
}
2 changes: 1 addition & 1 deletion js_src/base.js
Expand Up @@ -61,7 +61,7 @@ else {
* This is :js:data:`~js2p.base.version_info` joined in the format ``'a.b.c'``
*/

base.version_info = [0, 5, 551];
base.version_info = [0, 5, 607];
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 jv_src/base.java
Expand Up @@ -11,7 +11,7 @@

public class base {

public static int[] version_info = {0, 5, 551};
public static int[] version_info = {0, 5, 607};
public static String protocol_version = String.valueOf(version_info[0]) + "." + String.valueOf(version_info[1]);

public static long unpack_value(byte[] arr, int len) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "js2p",
"main": "js_src/js2p.js",
"version": "0.4.516",
"version": "0.5.607",
"license": "LGPL-3.0",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion py_src/base.py
Expand Up @@ -21,7 +21,7 @@
getUTC, intersect, get_lan_ip, get_socket, sanitize_packet, inherit_doc)

protocol_version = "0.5"
node_policy_version = "551"
node_policy_version = "607"

version = '.'.join((protocol_version, node_policy_version))

Expand Down
2 changes: 1 addition & 1 deletion sm_src/SM2P.st

Large diffs are not rendered by default.

0 comments on commit a5ce312

Please sign in to comment.