@@ -1,4 +1,4 @@ | |||||
v0.3 (unreleased): | |||||
v0.3 (released March 24, 2019): | |||||
- Added various new features to the WikiProjectTagger task. | - Added various new features to the WikiProjectTagger task. | ||||
- Copyvio detector: improved sentence splitting algorithm; many performance | - Copyvio detector: improved sentence splitting algorithm; many performance | ||||
@@ -36,7 +36,7 @@ setup.py test`` from the project's root directory. Note that some | |||||
tests require an internet connection, and others may take a while to run. | tests require an internet connection, and others may take a while to run. | ||||
Coverage is currently rather incomplete. | Coverage is currently rather incomplete. | ||||
Latest release (v0.2) | |||||
Latest release (v0.3) | |||||
~~~~~~~~~~~~~~~~~~~~~ | ~~~~~~~~~~~~~~~~~~~~~ | ||||
EarwigBot is available from the `Python Package Index`_, so you can install the | EarwigBot is available from the `Python Package Index`_, so you can install the | ||||
@@ -47,7 +47,7 @@ some header files. For example, on Ubuntu, see `this StackOverflow post`_. | |||||
You can also install it from source [1]_ directly:: | You can also install it from source [1]_ directly:: | ||||
curl -Lo earwigbot.tgz https://github.com/earwig/earwigbot/tarball/v0.2 | |||||
curl -Lo earwigbot.tgz https://github.com/earwig/earwigbot/tarball/v0.3 | |||||
tar -xf earwigbot.tgz | tar -xf earwigbot.tgz | ||||
cd earwig-earwigbot-* | cd earwig-earwigbot-* | ||||
python setup.py install | python setup.py install | ||||
@@ -50,7 +50,7 @@ copyright = u'2009-2016 Ben Kurtovic' | |||||
# The short X.Y version. | # The short X.Y version. | ||||
version = '0.3' | version = '0.3' | ||||
# The full version, including alpha/beta/rc tags. | # The full version, including alpha/beta/rc tags. | ||||
release = '0.3.dev0' | |||||
release = '0.3' | |||||
# The language for content autogenerated by Sphinx. Refer to documentation | # The language for content autogenerated by Sphinx. Refer to documentation | ||||
# for a list of supported languages. | # for a list of supported languages. | ||||
@@ -13,7 +13,7 @@ It's recommended to run the bot's unit tests before installing. Run | |||||
some tests require an internet connection, and others may take a while to run. | some tests require an internet connection, and others may take a while to run. | ||||
Coverage is currently rather incomplete. | Coverage is currently rather incomplete. | ||||
Latest release (v0.2) | |||||
Latest release (v0.3) | |||||
--------------------- | --------------------- | ||||
EarwigBot is available from the `Python Package Index`_, so you can install the | EarwigBot is available from the `Python Package Index`_, so you can install the | ||||
@@ -24,7 +24,7 @@ some header files. For example, on Ubuntu, see `this StackOverflow post`_. | |||||
You can also install it from source [1]_ directly:: | You can also install it from source [1]_ directly:: | ||||
curl -Lo earwigbot.tgz https://github.com/earwig/earwigbot/tarball/v0.2 | |||||
curl -Lo earwigbot.tgz https://github.com/earwig/earwigbot/tarball/v0.3 | |||||
tar -xf earwigbot.tgz | tar -xf earwigbot.tgz | ||||
cd earwig-earwigbot-* | cd earwig-earwigbot-* | ||||
python setup.py install | python setup.py install | ||||
@@ -1,6 +1,6 @@ | |||||
# -*- coding: utf-8 -*- | # -*- coding: utf-8 -*- | ||||
# | # | ||||
# Copyright (C) 2009-2017 Ben Kurtovic <ben.kurtovic@gmail.com> | |||||
# Copyright (C) 2009-2019 Ben Kurtovic <ben.kurtovic@gmail.com> | |||||
# | # | ||||
# Permission is hereby granted, free of charge, to any person obtaining a copy | # Permission is hereby granted, free of charge, to any person obtaining a copy | ||||
# of this software and associated documentation files (the "Software"), to deal | # of this software and associated documentation files (the "Software"), to deal | ||||
@@ -30,9 +30,9 @@ details. This documentation is also available `online | |||||
""" | """ | ||||
__author__ = "Ben Kurtovic" | __author__ = "Ben Kurtovic" | ||||
__copyright__ = "Copyright (C) 2009-2017 Ben Kurtovic" | |||||
__copyright__ = "Copyright (C) 2009-2019 Ben Kurtovic" | |||||
__license__ = "MIT License" | __license__ = "MIT License" | ||||
__version__ = "0.3.dev0" | |||||
__version__ = "0.3" | |||||
__email__ = "ben.kurtovic@gmail.com" | __email__ = "ben.kurtovic@gmail.com" | ||||
__release__ = False | __release__ = False | ||||
@@ -1,6 +1,6 @@ | |||||
# -*- coding: utf-8 -*- | # -*- coding: utf-8 -*- | ||||
# | # | ||||
# Copyright (C) 2009-2017 Ben Kurtovic <ben.kurtovic@gmail.com> | |||||
# Copyright (C) 2009-2019 Ben Kurtovic <ben.kurtovic@gmail.com> | |||||
# | # | ||||
# Permission is hereby granted, free of charge, to any person obtaining a copy | # Permission is hereby granted, free of charge, to any person obtaining a copy | ||||
# of this software and associated documentation files (the "Software"), to deal | # of this software and associated documentation files (the "Software"), to deal | ||||
@@ -1,7 +1,7 @@ | |||||
#! /usr/bin/env python | #! /usr/bin/env python | ||||
# -*- coding: utf-8 -*- | # -*- coding: utf-8 -*- | ||||
# | # | ||||
# Copyright (C) 2009-2017 Ben Kurtovic <ben.kurtovic@gmail.com> | |||||
# Copyright (C) 2009-2019 Ben Kurtovic <ben.kurtovic@gmail.com> | |||||
# | # | ||||
# Permission is hereby granted, free of charge, to any person obtaining a copy | # Permission is hereby granted, free of charge, to any person obtaining a copy | ||||
# of this software and associated documentation files (the "Software"), to deal | # of this software and associated documentation files (the "Software"), to deal | ||||