Skip to content

Commit e6f0706

Browse files
committed
Prep for release 1.0.0
1 parent 2657f49 commit e6f0706

3 files changed

Lines changed: 17 additions & 5 deletions

File tree

bugzilla.1

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH bugzilla 1 "January 16, 2014" "version 0.9.0" "User Commands"
1+
.TH bugzilla 1 "March 25, 2014" "version 1.0.0" "User Commands"
22
.SH NAME
33
bugzilla \- command-line interface to Bugzilla over XML-RPC
44
.SH SYNOPSIS
@@ -51,6 +51,8 @@ REQUIRED: product name
5151
REQUIRED: product version
5252
.IP "--component=COMPONENT, -c COMPONENT"
5353
REQUIRED: component name
54+
.IP "--sub-component=SUB_COMPONENT"
55+
Optional sub component name
5456
.IP "--short_desc=SUMMARY, --summary=SUMMARY, -s SUMMARY"
5557
REQUIRED: bug summary
5658
.IP "--comment=DESCRIPTION, -l DESCRIPTION"
@@ -97,11 +99,13 @@ Print output in the form given. You can use RPM-style tags that match bug fields
9799
.IP "--bug_id=BUG_ID, -b BUG_ID"
98100
specify individual bugs by IDs, separated with commas
99101
.IP "--product=PRODUCT, -p PRODUCT"
100-
product name, comma-separated (list with 'bugzilla info -p')
102+
product name, comma-separated (list with 'bugzilla info --products')
101103
.IP "--version=VERSION, -v VERSION"
102104
product version, comma-separated
103105
.IP "--component=COMPONENT, -c COMPONENT"
104-
component name(s), comma-separated (list with 'bugzilla info -c PRODUCT')
106+
component name(s), comma-separated (list with 'bugzilla info --components PRODUCT')
107+
.IP "--sub-component=SUB_COMPONENT"
108+
Sub component. Can be specified multiple times
105109
.IP "--components_file=COMPONENTS_FILE"
106110
list of component names from a file, one component per line (list with 'bugzilla info -c PRODUCT')
107111
.IP "--long_desc=LONG_DESC, -l LONG_DESC"
@@ -118,6 +122,12 @@ search severities, comma-separated
118122
search priorities, comma-separated
119123
.IP "--from-url=FROM_URL"
120124
Use the query given by a query.cgi URL. (Use quotes!)
125+
.IP "--quicksearch=QUICKSEARCH"
126+
Search using bugzilla's quicksearch functionality.
127+
.IP "--savedsearch=SAVEDSEARCH"
128+
Name of a bugzilla saved search. If you don't own this saved search, you must passed --savedsearch_sharer_id.
129+
.IP "--savedsearch-sharer-id=SAVEDSEARCH_SHARER_ID"
130+
Owner ID of the --savedsearch. You can get this ID from the URL bugzilla generates when running the saved search from the web UI.
121131

122132
.SH EMAIL \[oq]QUERY\[cq] OPTIONS
123133
.IP "--emailtype=EMAILTYPE, -E EMAILTYPE"
@@ -185,6 +195,8 @@ Print output in the form given. You can use RPM-style tags that match bug fields
185195
Reassign bug to different product
186196
.IP "--component=COMPONENT, -c COMPONENT"
187197
Reassign bug to different component
198+
.IP "--sub-component=SUB_COMPONENT"
199+
Reassign bug to different sub-component (rhbz extension)
188200
.IP "--version=VERSION, -v VERSION"
189201
Reassign bug to different version
190202
.IP "--os=OS, -o OS"

bugzilla/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# option) any later version. See http://www.gnu.org/copyleft/gpl.html for
1010
# the full text of the license.
1111

12-
__version__ = "0.9.0"
12+
__version__ = "1.0.0"
1313
version = __version__
1414

1515
import sys

python-bugzilla.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
%endif
77

88
Name: python-bugzilla
9-
Version: 0.9.0
9+
Version: 1.0.0
1010
Release: 1%{?dist}
1111
Summary: A python library and tool for interacting with Bugzilla
1212

0 commit comments

Comments
 (0)