From ca6c0fad081b48a7316e412675aa8bd30d9a0540 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Thu, 3 Oct 2013 15:57:44 -0400 Subject: [PATCH] VERSION 0.5.0 - alpha users must rebuild and restart! Whew. This is a big one. More of a marathon than a sprint. First, four big things: 1) This version breaks backward compatibility with all prior versions. It's in alpha, I can do that. 2) The port has changed from 8993 to 9993 to mark this change. Probably not necessary but why not? Also 8993/UDP turned out to be used by some enterprise LDAP thingy, which doesn't matter much either but again why not? 3) This version, unlike previous versions, does NOT auto-join the Earth network. Soon there will be more than one net, and not everyone is going to want to get dumped on a flat global LAN right out of the box. To join Earth use the command line interface: sudo zerotier-cli join bc8f9a8ee3000001 4) Finally, you will get a different IP on Earth. The whole cryptosystem has changed and we're not going to bother with continuity issues in alpha testing. So what's changed? See the blog: http://blog.zerotier.com/post/62991430345/alpha-zerotier-one-network-is-down-briefly The net should be up shortly after this commit. If there are any issues, 0.5.0 will be rapidly followed by 0.5.1. :-) Otherwise the next sprint will be finishing up support for private networks. Then it's off to the races with BETA, then Windows. (Decided to move into beta before Windows in all likelihood.) --- README.md | 4 ++-- version.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 168d6afb1..bec22cf02 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,8 @@ ZeroTier One creates flat virtual Ethernet networks of almost unlimited size. [V This code is presently in **ALPHA** testing. That means that the protocol spec may change in incompatible ways, and it certainly has bugs. Testers should "git pull," rebuild, and restart fairly often. If things mysteriously stop working, do that. +Follow the [ZeroTier blog](http://blog.zerotier.com/) and the [GitHub project](https://github.com/zerotier/ZeroTierOne) to stay up to date. + See BUILDING.txt and RUNNING.txt for instructions. It currently builds on Mac and Linux. A Windows port is well along the way to completion. If you're brave you can load the Visual Studio 2012 solution and play around. Once you have it running you can join the Earth network -- a LAN for the planet -- by using the 'zerotier-cli' tool: 'sudo zerotier-cli join bc8f9a8ee3000001'. Right now Earth is the only network. Ability to create private networks, as well as some additional special-purpose public ones, will be coming soon. (Note: previous alpha versions auto-joined Earth, but since 0.5.0 it no longer does this.) @@ -13,8 +15,6 @@ Note that this won't work if your firewall does not allow outbound UDP. It must ZeroTier One is licensed under the GNU General Public License version 3. You are free to use, modify, or redistribute it under the terms of that license. If you would like to embed ZeroTier One in a closed source product or create a closed source derivative product, contact ZeroTier Networks LLC. -Follow the [ZeroTier blog](http://blog.zerotier.com/) for announcements, in-depth articles, and related stuff. - [![githalytics.com alpha](https://cruel-carlota.pagodabox.com/59b2cbb9c154bf84bddb4b714402e548 "githalytics.com")](http://githalytics.com/zerotier/ZeroTierOne) (c)2012-2013 [ZeroTier Networks LLC](https://www.zerotier.com/) \ No newline at end of file diff --git a/version.h b/version.h index a5f8e0d9b..6c019ed2c 100644 --- a/version.h +++ b/version.h @@ -36,11 +36,11 @@ /** * Minor version: 8-bit (0-255) */ -#define ZEROTIER_ONE_VERSION_MINOR 4 +#define ZEROTIER_ONE_VERSION_MINOR 5 /** * Revision: 16-bit (0-65535) */ -#define ZEROTIER_ONE_VERSION_REVISION 5 +#define ZEROTIER_ONE_VERSION_REVISION 0 #endif