From 235a42884feef22e75468664ae7a87a19bfd82cf Mon Sep 17 00:00:00 2001 From: "Bora M. Alper" Date: Wed, 14 Jun 2017 11:35:35 +0300 Subject: [PATCH] v0.6.0 is out! v0.6.0, overall, tries to make magnetico more stable rather than introducing new features. ## magneticod * Removed better_bencode internal fork (but we are still using it so no loss at performance). This has caused some issues for some users and this release should solve the issue (e.g. #98). * General cleanup, performance improvements, minor bug fixes... * Most notably among all, we improved our still-primitive congestion control support for BSD-based OSes, including OS X. ## magneticow * There are no changes in magneticow, but version number is bumped to stay in-sync with magneticod. --- magneticod/magneticod/__init__.py | 2 +- magneticod/setup.py | 2 +- magneticow/setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/magneticod/magneticod/__init__.py b/magneticod/magneticod/__init__.py index 75175d2..a076f86 100644 --- a/magneticod/magneticod/__init__.py +++ b/magneticod/magneticod/__init__.py @@ -12,4 +12,4 @@ # # You should have received a copy of the GNU Affero General Public License along with this program. If not, see # . -__version__ = (0, 5, 0) +__version__ = (0, 6, 0) diff --git a/magneticod/setup.py b/magneticod/setup.py index 8296158..4ac2c56 100644 --- a/magneticod/setup.py +++ b/magneticod/setup.py @@ -19,7 +19,7 @@ def run_setup(): setup( name="magneticod", - version="0.5.0", + version="0.6.0", description="Autonomous BitTorrent DHT crawler and metadata fetcher.", long_description=read_file("README.rst"), url="http://magnetico.org", diff --git a/magneticow/setup.py b/magneticow/setup.py index 198a7ee..6258d7d 100644 --- a/magneticow/setup.py +++ b/magneticow/setup.py @@ -8,7 +8,7 @@ def read_file(path): setup( name="magneticow", - version="0.5.0", + version="0.6.0", description="Lightweight web interface for magnetico.", long_description=read_file("README.rst"), url="http://magnetico.org",