diff --git a/CHANGELOG b/CHANGELOG index 433571e..81aad0a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -v0.3 (unreleased): +v0.3 (released March 24, 2019): - Added various new features to the WikiProjectTagger task. - Copyvio detector: improved sentence splitting algorithm; many performance diff --git a/README.rst b/README.rst index 4b9a56b..6553a75 100644 --- a/README.rst +++ b/README.rst @@ -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. 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 @@ -47,7 +47,7 @@ some header files. For example, on Ubuntu, see `this StackOverflow post`_. 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 cd earwig-earwigbot-* python setup.py install diff --git a/docs/conf.py b/docs/conf.py index 3e66cb9..9b635ab 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,7 @@ copyright = u'2009-2016 Ben Kurtovic' # The short X.Y version. version = '0.3' # 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 # for a list of supported languages. diff --git a/docs/installation.rst b/docs/installation.rst index cc577ab..c4c1e01 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -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. 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 @@ -24,7 +24,7 @@ some header files. For example, on Ubuntu, see `this StackOverflow post`_. 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 cd earwig-earwigbot-* python setup.py install diff --git a/earwigbot/__init__.py b/earwigbot/__init__.py index a37f45c..9c28649 100644 --- a/earwigbot/__init__.py +++ b/earwigbot/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2017 Ben Kurtovic +# Copyright (C) 2009-2019 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # 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" -__copyright__ = "Copyright (C) 2009-2017 Ben Kurtovic" +__copyright__ = "Copyright (C) 2009-2019 Ben Kurtovic" __license__ = "MIT License" -__version__ = "0.3.dev0" +__version__ = "0.3" __email__ = "ben.kurtovic@gmail.com" __release__ = False diff --git a/earwigbot/wiki/sitesdb.py b/earwigbot/wiki/sitesdb.py index 98e9d50..020b938 100644 --- a/earwigbot/wiki/sitesdb.py +++ b/earwigbot/wiki/sitesdb.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2017 Ben Kurtovic +# Copyright (C) 2009-2019 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/setup.py b/setup.py index aaee9bc..d4688d0 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (C) 2009-2017 Ben Kurtovic +# Copyright (C) 2009-2019 Ben Kurtovic # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal