Skip to content

Commit 73c5fb6

Browse files
committed
Update version to 0.6 and Copyright years
1 parent 1e4a9bd commit 73c5fb6

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

bin/bugzilla

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/python
22
# bugzilla - a commandline frontend for the python bugzilla module
33
#
4-
# Copyright (C) 2007,2008 Red Hat Inc.
4+
# Copyright (C) 2007, 2008, 2009, 2010 Red Hat Inc.
55
# Author: Will Woods <[email protected]>
66
#
77
# This program is free software; you can redistribute it and/or modify it
@@ -19,7 +19,7 @@ import locale
1919
import pprint
2020
import socket
2121

22-
version = '0.5.1'
22+
version = '0.6.0'
2323
default_bz = 'https://bugzilla.redhat.com/xmlrpc.cgi'
2424

2525
# Initial simple logging stuff

bugzilla.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH bugzilla 1 "February 25, 2010" "version 0.5.1" "User Commands"
1+
.TH bugzilla 1 "February 25, 2010" "version 0.6.0" "User Commands"
22
.SH NAME
33
bugzilla \- command-line interface to Bugzilla over XML-RPC
44
.SH SYNOPSIS

bugzilla/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# base.py - the base classes etc. for a Python interface to bugzilla
22
#
3-
# Copyright (C) 2007,2008 Red Hat Inc.
3+
# Copyright (C) 2007, 2008, 2009, 2010 Red Hat Inc.
44
# Author: Will Woods <[email protected]>
55
#
66
# This program is free software; you can redistribute it and/or modify it
@@ -22,7 +22,7 @@
2222

2323
log = logging.getLogger('bugzilla')
2424

25-
version = '0.5.1'
25+
version = '0.6.0'
2626
user_agent = 'Python-urllib2/%s bugzilla.py/%s' % \
2727
(urllib2.__version__,version)
2828

bugzilla/bugzilla3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# bugzilla3.py - a Python interface to Bugzilla 3.x using xmlrpclib.
22
#
3-
# Copyright (C) 2008 Red Hat Inc.
3+
# Copyright (C) 2008, 2009 Red Hat Inc.
44
# Author: Will Woods <[email protected]>
55
#
66
# This program is free software; you can redistribute it and/or modify it

bugzilla/rhbugzilla.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# rhbugzilla.py - a Python interface to Red Hat Bugzilla using xmlrpclib.
22
#
3-
# Copyright (C) 2008 Red Hat Inc.
3+
# Copyright (C) 2008, 2009 Red Hat Inc.
44
# Author: Will Woods <[email protected]>
55
#
66
# This program is free software; you can redistribute it and/or modify it

0 commit comments

Comments
 (0)