Skip to content

Commit

Permalink
Merge pull request #703 from henrypinkard/main
Browse files Browse the repository at this point in the history
update expected versions
  • Loading branch information
henrypinkard authored Sep 29, 2023
2 parents 10b05eb + a77de41 commit 3a9547e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class ZMQServer extends ZMQSocketWrapper {
//map of objects that exist in some client of the server
protected final ConcurrentHashMap<String, Object> externalObjects_ = new ConcurrentHashMap<String, Object>();

public static final String VERSION = "5.0.0";
public static final String VERSION = "5.1.0";

private static Function<Class, Object> classMapper_;
private static ZMQServer mainServer_;
Expand Down
2 changes: 1 addition & 1 deletion pycromanager/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (0, 29, 5)
version_info = (0, 29, 6)
__version__ = ".".join(map(str, version_info))
2 changes: 1 addition & 1 deletion pycromanager/zmq_bridge/bridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ class _Bridge:

DEFAULT_PORT = 4827
DEFAULT_TIMEOUT = 500
_EXPECTED_ZMQ_SERVER_VERSION = "5.0.0"
_EXPECTED_ZMQ_SERVER_VERSION = "5.1.0"

_bridge_creation_lock = threading.Lock()
_cached_bridges_by_port_and_thread = {}
Expand Down

0 comments on commit 3a9547e

Please sign in to comment.