From 643c72ee16410d694917a155d39a2a49669613f3 Mon Sep 17 00:00:00 2001 From: "Bora M. Alper" Date: Tue, 6 Jun 2017 15:44:23 +0300 Subject: [PATCH] magnetico v0.5.0 is out! Phew, what an effort it was to ship magnetico out this time! CHANGELOG ========= magneticod ---------- * Thanks to @richardkiss' heoric effort, magneticod now is ported to Python's asyncio (and uses uvloop for further performance improvements). CPU usage is reduced by 60%, and many older bugs are eliminated: #3, #55, #61 * Switched to better-bencode from bencoder.pyx for performance reasons. CPU utilization dropped by half. magneticow ---------- * magneticow is finally became _fast_! Database indexes are created to speed-up file-list page (i.e. torrent info) and statistics. Thanks to everyone who were involved in contributing to this release! Special thanks to @ad-m who has been nagging me day and night to make me take informed decision, I appreciate that. --- 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 cc8c8be..75175d2 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, 4, 0) +__version__ = (0, 5, 0) diff --git a/magneticod/setup.py b/magneticod/setup.py index 4fbb055..0f186e5 100644 --- a/magneticod/setup.py +++ b/magneticod/setup.py @@ -19,7 +19,7 @@ def run_setup(): setup( name="magneticod", - version="0.4.0", + version="0.5.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 2d5c0ed..198a7ee 100644 --- a/magneticow/setup.py +++ b/magneticow/setup.py @@ -8,7 +8,7 @@ def read_file(path): setup( name="magneticow", - version="0.4.0", + version="0.5.0", description="Lightweight web interface for magnetico.", long_description=read_file("README.rst"), url="http://magnetico.org",