Skip to content

Commit 276c86c

Browse files
committed
Version 3.10.3
1 parent 59bb3f2 commit 276c86c

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

CHANGELOG.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ can check out the `wish list <https://github.com/mborsetti/webchanges/blob/main/
3131
Internals, for changes that don't affect users. [triggers a minor patch]
3232
3333
34-
Version 3.10.3rc1
34+
Version 3.10.3
3535
===================
36-
Unreleased
36+
2022-07-22
3737

3838
Added
3939
-----

docs/cli.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ Command line arguments
1616
[--rollback-cache TIMESTAMP] [--delete-snapshot JOB]
1717
[--database-engine {sqlite3,redis,minidb,textfiles}] [--max-snapshots NUM_SNAPSHOTS]
1818
[--check-new] [--install-chrome] [--features] [--add JOB] [--delete JOB]
19-
[JOB ...]
19+
[joblist ...]
2020
2121
Checks web content to detect any changes since the prior run. If any are found, it shows what changed ('diff') and/or
2222
sends it via e-mail and/or other supported services. Can check the output of local commands as well.
2323
2424
positional arguments:
25-
JOB job(s) to run (by index as per --list) (default: run all jobs)
25+
joblist job(s) to run (by index as per --list) (default: run all jobs)
2626
2727
options:
2828
-h, --help show this help message and exit
@@ -87,9 +87,9 @@ Command line arguments
8787

8888
Select subset of jobs
8989
---------------------
90-
Add job number(s) in the command line to run a subset of them; for example, run ``webchanges 2 3`` to only run jobs #2
91-
and #3 from your job list, or ``webchanges -1`` to only run the last job on your jobs list. Find the numbering of your
92-
jobs by running ``webchanges --list``. API is experimental and may change in the near future.
90+
Add job number(s) (a ``joblist``) to the command line to run a subset of jobs; for example, ``webchanges 2 3 9`` will
91+
only run jobs #2, #3, and #9, and ``webchanges -1`` will only run the last job. Find the index numbering of your jobs by
92+
running ``webchanges --list``. API is experimental and may change in the near future.
9393

9494
.. versionadded:: 3.6
9595

webchanges/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# * MINOR version when you add functionality in a backwards compatible manner, and
1919
# * MICRO or PATCH version when you make backwards compatible bug fixes. We no longer use '0'
2020
# If unsure on increments, use pkg_resources.parse_version to parse
21-
__version__ = '3.10.3rc1'
21+
__version__ = '3.10.3'
2222
__description__ = (
2323
'Check web (or commands) for changes since last run and notify.\n\nAnonymously alerts you of webpage changes.'
2424
)

webchanges/config.py

-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ def parse_args(self, cmdline_args: List[str]) -> argparse.ArgumentParser:
9797
nargs='*',
9898
type=int,
9999
help='job(s) to run (by index as per --list) (default: run all jobs)',
100-
metavar='JOB',
101100
)
102101
parser.add_argument(
103102
'-V',

0 commit comments

Comments
 (0)