Set for release.

This commit is contained in:
Bastian Kleineidam 2014-03-04 21:36:24 +01:00
parent 3f9b3570c6
commit b17211f162
6 changed files with 11 additions and 7 deletions

View file

@ -1,4 +1,4 @@
9.0 "" (released xx.xx.2014)
9.0 "The Wolf of Wall Street" (released 3.3.2014)
Features:
- checking: Support connection and content check plugins.

View file

@ -48,9 +48,12 @@ class ResultCache(object):
return self.cache[key]
self.misses += 1
return None
@synchronized(cache_lock)
def add_result(self, key, result):
"""Add result object to cache with given key.
The request is ignored when the cache is already full.
"""
if len(self.cache) > self.max_size:
return
self.cache[key] = result

View file

@ -1,5 +1,5 @@
Project: LinkChecker
Version: 8.6
Version: 9.0
Hide: N
Website-URL: http://wummel.github.io/linkchecker/
Changelog-URL: https://github.com/wummel/linkchecker/blob/master/doc/changelog.txt
@ -8,4 +8,5 @@ Debian-Package-URL: http://packages.debian.org/linkchecker
GIT-Tree-URL: https://github.com/wummel/linkchecker.git
Windows-installer-URL: http://wummel.github.io/linkchecker/dist/LinkChecker-${version}.exe
This release adds missing logger classes and sends an HTTP Accept header.
This release adds plugin support and uses the Python requests module for
HTTP URLs. Some bugs were also fixed.

View file

@ -1,5 +1,5 @@
# -*- coding: iso-8859-1 -*-
# Copyright (C) 2010-2012 Bastian Kleineidam
# Copyright (C) 2010-2014 Bastian Kleineidam
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
# -*- coding: iso-8859-1 -*-
# Copyright (C) 2004-2012 Bastian Kleineidam
# Copyright (C) 2004-2014 Bastian Kleineidam
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
# -*- coding: iso-8859-1 -*-
# Copyright (C) 2006-2012 Bastian Kleineidam
# Copyright (C) 2006-2014 Bastian Kleineidam
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by