Skip to content
This repository has been archived by the owner on Aug 1, 2023. It is now read-only.

Commit

Permalink
Merge pull request #124 from datawire/develop
Browse files Browse the repository at this point in the history
Release 2.0.11
  • Loading branch information
bozzzzo authored Sep 6, 2016
2 parents e54cc54 + 2b5b103 commit a68c78a
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.10
current_version = 2.0.11
commit = False
tag = False
tag_name = "v{new_version}"
Expand Down
2 changes: 1 addition & 1 deletion quark/discovery-3.0.q
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
quark 1.0;

package datawire_mdk_discovery 2.0.10;
package datawire_mdk_discovery 2.0.11;

include discovery-protocol-3.0.q;
include synapse.q;
Expand Down
2 changes: 1 addition & 1 deletion quark/introspection-1.0.q
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
quark 1.0;

package datawire_mdk_introspection 2.0.10;
package datawire_mdk_introspection 2.0.11;

/*
* Copyright 2016 Datawire. All rights reserved.
Expand Down
4 changes: 3 additions & 1 deletion quark/mdk-2.0.q
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
quark 1.0;

package datawire_mdk 2.0.10;
package datawire_mdk 2.0.11;

// DATAWIRE MDK

Expand Down Expand Up @@ -248,6 +248,7 @@ namespace mdk {
class MDKImpl extends MDK {

Logger logger = new Logger("mdk");
Map<String,Object> _reflection_hack = null;

MDKRuntime _runtime;
Discovery _disco;
Expand Down Expand Up @@ -276,6 +277,7 @@ namespace mdk {
}

MDKImpl(MDKRuntime runtime) {
_reflection_hack = new Map<String,Object>();
_runtime = runtime;
if (!runtime.dependencies.hasService("failurepolicy_factory")) {
runtime.dependencies.registerService("failurepolicy_factory",
Expand Down
2 changes: 1 addition & 1 deletion quark/mdk_runtime.q
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
quark 1.0;

package datawire_mdk_runtime 2.0.10;
package datawire_mdk_runtime 2.0.11;

include actors_core.q;
include actors_promise.q;
Expand Down
2 changes: 1 addition & 1 deletion quark/protocol-1.0.q
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
quark 1.0;

package datawire_mdk_protocol 2.0.10;
package datawire_mdk_protocol 2.0.11;

import quark.concurrent;
import quark.reflect;
Expand Down
2 changes: 1 addition & 1 deletion quark/tracing-2.0.q
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
quark 1.0;

package datawire_mdk_tracing 2.0.10;
package datawire_mdk_tracing 2.0.11;

include protocol-1.0.q;
include introspection-1.0.q;
Expand Down
2 changes: 1 addition & 1 deletion quark/util-1.0.q
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
quark 1.0;

package datawire_mdk_util 2.0.10;
package datawire_mdk_util 2.0.11;

use js bluebird 3.4.1;
include mdk_promises.js;
Expand Down

0 comments on commit a68c78a

Please sign in to comment.