win32-service 0.7.0-x86-mswin32-60 → 0.7.1-x86-mswin32-60

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES CHANGED
@@ -1,238 +1,247 @@
1
- == 0.7.0 - 30-Jun-2009
2
- * INTERFACE CHANGE: The Service.new and Service.configure methods now accept
3
- a single hash argument only. The :service_name key is mandatory, while the
4
- :host key is optional.
5
- * Fixed a bug in the Service.services method where a segfault would occur if
6
- the binary_path_name was greater than 260 characters. The buffer size has
7
- been increased to 1024 characters. Thanks go to Dan Daniels for the spot.
8
- * Altered the Daemon class so that the Ruby interpreter was not invoked within
9
- the Service_Main function. The functions that close stdin, stdout and stderr
10
- are now called within the mainloop method. Thanks go to Tim Hanson for the
11
- spot and the patch.
12
- * Eliminated a minor build warning in daemon.c
13
- * License changed to Artistic 2.0, with corresponding gemspec update.
14
- * Added an uninstall rake task.
15
- * Updated the service_stop method in the demo_daemon.rb file, and added some
16
- additional comments.
17
- * The test files were renamed.
18
- * Several tests were updated and refactored to use Test::Unit 2.x. That
19
- library is now a dependency.
20
- * The 'uninstall' Rakefile task is now more verbose.
21
-
22
- == 0.6.1 - 1-Jan-2008
23
- * The Service.services method now handles the scenario where a particular
24
- service may still exist, but its underlying registry entry has been deleted.
25
- In this case, most ServiceInfo struct members are set to nil and a warning
26
- is issued.
27
- * RDoc updates.
28
-
29
- == 0.6.0 - 25-Nov-2007
30
- * The Service control class is now pure Ruby. The Daemon class is still C,
31
- however. That may change in the future. This means the windows-pr
32
- library is now a prerequisite.
33
- * The Service.new method has been altered in a way that is not backwards
34
- compatible. It is now the same as Service.create.
35
- * The Service.start method now properly handles arguments to the
36
- Daemon#service_main method.
37
- * The Daemon source code is now separate from the Service control class
38
- source code. That means you must require them separately, as needed.
39
- * The Daemon class should be much more responsive to service events now,
40
- especially service_stop. Many thanks go to Kevin Burge for the patch.
41
- * Added the Daemon.mainloop method as a shortcut for Daemon.new.mainloop.
42
- * The Daemon class now redirects STDIN, STDOUT and STDERR to the NUL device
43
- if they're still associated with a terminal when the service starts. This
44
- should help prevent Errno::EBADF errors.
45
- * The Service.services class method now supports the group parameter for
46
- versions of Ruby built with older compilers, i.e. it will now work with
47
- the one-click Ruby installer.
48
- * The Service.getdisplayname method was changed to Service.get_display_name.
49
- An alias has been provided for backwards compatibility.
50
- * The Service.getservicename method was changed to Service.get_service_name.
51
- An alias has been provided for backwards compatibility.
52
- * Added the Service.config_info method.
53
- * The Service.create and Service.configure methods now allow you to set
54
- failure actions, failure commands, and reset/retry periods.
55
- * Improved test suite.
56
- * Changed 'tdaemon.rb', 'tdaemon_ctl.rb' and 'service_test.rb' to
57
- 'demo_daemon.rb', 'demo_daemon_ctl.rb' and 'demo_services.rb', respectively.
58
- * Some refactoring and updates to the demo daemon and demo daemon controller
59
- examples.
60
- * The Win32Service struct is now ServiceInfo.
61
- * ServiceError is now Service::Error.
62
- * DaemonError is now Daemon::Error.
63
- * Some documentation improvements, corrections and updates.
64
-
65
- == 0.5.2 - 25-Nov-2006
66
- * Fixed a bug in the Daemon class where the service event handling methods
67
- (most notably service_stop) did not work properly due to thread blocking
68
- issues. Many thanks go to Patrick Hurley for the patch.
69
- * Added the Daemon#running? method as helper method for your service_main
70
- method.
71
- * The 'interactive?' struct member is now just 'interactive'. This was
72
- supposed to have been in the last release but was somehow missed. Sorry.
73
- * Scrapped the old daemon_test.rb file and split it into two new files -
74
- tdaemon.rb and tdaemon_ctl.rb. In the process a few bugs were fixed.
75
- * Added a gemspec.
76
- * Documentation and test suite updates.
77
-
78
- == 0.5.1 - 18-Jun-2006
79
- * Added the Service.open method.
80
- * The Service.new method now accepts a block, and automatically closes itself
81
- at the end of the block.
82
- * Fixed in a bug in the Service.create method where setting dependencies
83
- was not working properly. Thanks go to Scott Harper for the spot.
84
- * The 'interactive?' struct member is now just 'interactive' since Ruby no
85
- longer supports question marks in struct member names. UGH.
86
- * The block for Service#configure_service is no longer optional.
87
- * Replaced ClipSrv with W32Time for most of the test methods in tc_service.rb
88
- because it had a dependency that is disabled on most systems.
89
- * Added a tweak to the extconf.rb file to help with the test suite.
90
- * Some documentation updates and corrections.
91
-
92
- == 0.5.0 - 26-Nov-2005
93
- * Added a service_init hook, and (internally) altered the way the service
94
- starts. This was done to deal with services that need to perform any
95
- initialization in the Daemon itself before the service starts. Previously
96
- this would result in the service timing out during startup.
97
-
98
- Thanks go to Jamey Cribbs for spotting the problem.
99
-
100
- * Modified the Daemon example, adding a service_init hook that does about 10
101
- seconds worth of initialization before finally starting. See the comments
102
- in examples\daemon_test.rb for more information.
103
- * Minor test and README changes.
104
-
105
- == 0.4.6 - 24-May-2005
106
- * Fixed an initialization bug that could cause Daemons to fail unless the
107
- win32-service package was the last package require'd.
108
- * Altered the Service.start method. It now takes any number of arguments
109
- (after the service and host name). These arguments are passed to the
110
- service's Service_Main() function.
111
- * The Service.services method now returns an Array of ServiceStruct's in
112
- non-block form.
113
- * The Service.start, Service.pause, Service.resume, Service.stop and
114
- Service.delete methods now return the class (self), not 'true'.
115
- * Added the ability to add or configure the service description in
116
- Service#create_service or Service#configure, respectively.
117
- * Fixed a bug in the Service.start method where false positives could result.
118
- * Updated the ServiceStatus struct to include pid and service_flags on Win2k
119
- or later.
120
- * Unicode is now the default setting as far as internal string handling. It
121
- will still work fine with 'regular' text.
122
- * Added safe string handling for string input values.
123
- * Added rdoc comments into the C source.
124
- * Made the service.txt and daemon.txt files rdoc friendly.
125
- * Removed the service.rd and daemon.rd files. If you want html documentation,
126
- run rdoc over the service.txt and daemon.txt files.
127
- * The dreaded "code cleanup".
128
-
129
- == 0.4.5 - 28-Feb-2005
130
- * Fixed an accessor bug in Service#create. Thanks go to Nathaniel Talbott
131
- for the spot.
132
- * Eliminated a warning that appeared starting in Ruby 1.8.2 regarding Struct
133
- redefinitions.
134
- * Moved 'examples' directory to toplevel directory.
135
- * Deleted the 'test2.rb' example. This was supplanted by the 'daemon_test.rb'
136
- script.
137
- * Renamed the 'test.rb' file to 'services_test.rb'.
138
- * Made this document rdoc friendly.
139
-
140
- == 0.4.4 - 27-Aug-2004
141
- * Modified the Service class to use the newer allocation framework. The
142
- Daemon class already used this, hence no major version bump.
143
- * Fixed in a bug in the create_service() method with regards to the
144
- 'dependencies' option and null arguments (you no longer need to specify
145
- an empty array).
146
-
147
- == 0.4.3 - 14-Aug-2004
148
- * Fixed the Daemon class by adding back the constants it needed in order to
149
- run. I accidentally broke this when I changed the Daemon class from being
150
- a subclass of Service to being its own class.
151
- * Added a separate test suite for the Daemon class, tc_daemon.rb, to help
152
- me from making that mistake ever again. :)
153
- * Updated the daemon_test.rb script a bit to report error messages should
154
- any occur.
155
- * Minor doc updates
156
-
157
- == 0.4.2 - 10-Jul-2004
158
- * The Daemon class is no longer a subclass of Service.
159
- * Added the 'pid' and 'service_flags' struct members to the Win32Service
160
- struct. These members are only available to folks using Windows 2000 or
161
- later and who compile with VC++ 7.0 or later (including the .NET SDK).
162
- * The Service.services method now accepts a group name as an optional third
163
- argument. Again, you must be using Windows 2000 or later and compile with
164
- VC++ 7.0 or later (including the .NET SDK).
165
- * The deprecated STR2CSTR() functions were replaced with StringValuePtr().
166
- This also means that as of this version, win32-service requires Ruby
167
- 1.8.0 or greater.
168
- * Moved the sample programs to doc/examples
169
- * Removed the .html files under /doc. You can generate that on your own if
170
- you like.
171
-
172
- == 0.4.1 - 14-Mar-2004
173
- * Added the exists? class method and corresponding test suite additions.
174
- * Pushed the ServiceError and DaemonError classes under the Win32 module.
175
- * Normalized tc_service.rb so that it can be run outside of the test directory
176
- more easily.
177
-
178
- == 0.4.0 - 9-Feb-2004
179
- * Changed "worker" method to "service_main" method.
180
- * Added event hooks for stop, pause, resume, etc. See the documentation for
181
- further details. (Thanks Park Heesob)
182
- * Some of the Daemon functions were raising ServiceError. They have been
183
- changed to DaemonError.
184
- * Updated the daemon_test.rb file to use the new event hooks.
185
- * Documentation additions and updates.
186
-
187
- == 0.3.0 - 31-Jan-2004
188
- * Added a Daemon subclass. This allows you to run Ruby programs as a service.
189
- Please see the documentation for more details. (Thanks Park Heesob). This
190
- should be considered an ALPHA release.
191
- * The Win32ServiceError class has been renamed to just ServiceError. I felt
192
- the "Win32" was redundant, given that it's already under the Win32 module.
193
- * In some cases a bogus error description was being returned because the
194
- GetLastError() function was being called too late. This has been fixed.
195
- (Thanks Park Heesob).
196
- * The explicit garbage collection has been removed because what I thought was
197
- a memory leak was not, in fact, a memory leak. In addition, it was hurting
198
- performance badly.
199
- * The "\r\n" is now automatically stripped from error messages. This was
200
- causing slightly garbled error messages. (Thanks Park Heesob).
201
- * Added explicit closing of the Service Control Manager handle in the
202
- services() function for those rare cases where it may fail while reading
203
- service information.
204
- * Made some of the error strings a bit more descriptive.
205
- * Test suite and documentation additions, including a sample daemon program
206
- in the test directory called "daemon_test.rb".
207
-
208
- == 0.2.2 - 15-Jan-2004
209
- * Fixed a mistake in the service_init declaration within Init_service().
210
- * Fixed bug in the service_init function with regards to desired access.
211
- * Modified service_free() function to explicitly set the hSCManager handle
212
- to NULL and modified the service_close() method to test hSCManager handle
213
- for NULL value. This should eliminate accidentally trying to close an
214
- already closed handle, which may have happened as the result of a free()
215
- call. (Thanks Park Heesob).
216
- * Added explicit garbage collection in Service.services() method.
217
- * More explicit about closing open HANDLE's when error conditions arise.
218
-
219
- == 0.2.1 - 2-Nov-2003
220
- * Made the exported less redundant and less verbose, e.g.
221
- Service::SERVICE_DISABLED is now just Service::DISABLED. The same is true
222
- for the service control constants, i.e. the 'SC_' has been removed.
223
- * Corresponding test suite changes.
224
-
225
- == 0.2.0 - 16-Oct-2003
226
- * The constructor has been changed. It now only takes a machine name and a
227
- desired access for arguments. The keyword arguments are now part of the
228
- create_service method() and only in block form. See the documentation for
229
- more details.
230
- * Added a configure_service() and close() instance methods.
231
- * Added several new constants to allow finer control over created and
232
- configured services.
233
- * Added Win32ServiceError as an exception. All failures now raise this
234
- error instead of a vanilla StandardError.
235
- * Moved some common code into the service.h file.
236
-
237
- == 0.1.0 - 10-Oct-2003
238
- - Initial release
1
+ == 0.7.1 - 9-Feb-2010
2
+ * Compatibility fixes for 1.9.x.
3
+ * Fixed a bug where the controls_accepted struct member was always nil. This
4
+ has been fixed and now always returns an array.
5
+ * Added 'pre-shutdown' as possible values for the list of controls accepted.
6
+ * Changed test-unit from a runtime dependency to a development dependency.
7
+ * Some tests were refactored to be more reliable.
8
+ * Refactored the Rakefile and gemspec.
9
+
10
+ == 0.7.0 - 30-Jun-2009
11
+ * INTERFACE CHANGE: The Service.new and Service.configure methods now accept
12
+ a single hash argument only. The :service_name key is mandatory, while the
13
+ :host key is optional.
14
+ * Fixed a bug in the Service.services method where a segfault would occur if
15
+ the binary_path_name was greater than 260 characters. The buffer size has
16
+ been increased to 1024 characters. Thanks go to Dan Daniels for the spot.
17
+ * Altered the Daemon class so that the Ruby interpreter was not invoked within
18
+ the Service_Main function. The functions that close stdin, stdout and stderr
19
+ are now called within the mainloop method. Thanks go to Tim Hanson for the
20
+ spot and the patch.
21
+ * Eliminated a minor build warning in daemon.c
22
+ * License changed to Artistic 2.0, with corresponding gemspec update.
23
+ * Added an uninstall rake task.
24
+ * Updated the service_stop method in the demo_daemon.rb file, and added some
25
+ additional comments.
26
+ * The test files were renamed.
27
+ * Several tests were updated and refactored to use Test::Unit 2.x. That
28
+ library is now a dependency.
29
+ * The 'uninstall' Rakefile task is now more verbose.
30
+
31
+ == 0.6.1 - 1-Jan-2008
32
+ * The Service.services method now handles the scenario where a particular
33
+ service may still exist, but its underlying registry entry has been deleted.
34
+ In this case, most ServiceInfo struct members are set to nil and a warning
35
+ is issued.
36
+ * RDoc updates.
37
+
38
+ == 0.6.0 - 25-Nov-2007
39
+ * The Service control class is now pure Ruby. The Daemon class is still C,
40
+ however. That may change in the future. This means the windows-pr
41
+ library is now a prerequisite.
42
+ * The Service.new method has been altered in a way that is not backwards
43
+ compatible. It is now the same as Service.create.
44
+ * The Service.start method now properly handles arguments to the
45
+ Daemon#service_main method.
46
+ * The Daemon source code is now separate from the Service control class
47
+ source code. That means you must require them separately, as needed.
48
+ * The Daemon class should be much more responsive to service events now,
49
+ especially service_stop. Many thanks go to Kevin Burge for the patch.
50
+ * Added the Daemon.mainloop method as a shortcut for Daemon.new.mainloop.
51
+ * The Daemon class now redirects STDIN, STDOUT and STDERR to the NUL device
52
+ if they're still associated with a terminal when the service starts. This
53
+ should help prevent Errno::EBADF errors.
54
+ * The Service.services class method now supports the group parameter for
55
+ versions of Ruby built with older compilers, i.e. it will now work with
56
+ the one-click Ruby installer.
57
+ * The Service.getdisplayname method was changed to Service.get_display_name.
58
+ An alias has been provided for backwards compatibility.
59
+ * The Service.getservicename method was changed to Service.get_service_name.
60
+ An alias has been provided for backwards compatibility.
61
+ * Added the Service.config_info method.
62
+ * The Service.create and Service.configure methods now allow you to set
63
+ failure actions, failure commands, and reset/retry periods.
64
+ * Improved test suite.
65
+ * Changed 'tdaemon.rb', 'tdaemon_ctl.rb' and 'service_test.rb' to
66
+ 'demo_daemon.rb', 'demo_daemon_ctl.rb' and 'demo_services.rb', respectively.
67
+ * Some refactoring and updates to the demo daemon and demo daemon controller
68
+ examples.
69
+ * The Win32Service struct is now ServiceInfo.
70
+ * ServiceError is now Service::Error.
71
+ * DaemonError is now Daemon::Error.
72
+ * Some documentation improvements, corrections and updates.
73
+
74
+ == 0.5.2 - 25-Nov-2006
75
+ * Fixed a bug in the Daemon class where the service event handling methods
76
+ (most notably service_stop) did not work properly due to thread blocking
77
+ issues. Many thanks go to Patrick Hurley for the patch.
78
+ * Added the Daemon#running? method as helper method for your service_main
79
+ method.
80
+ * The 'interactive?' struct member is now just 'interactive'. This was
81
+ supposed to have been in the last release but was somehow missed. Sorry.
82
+ * Scrapped the old daemon_test.rb file and split it into two new files -
83
+ tdaemon.rb and tdaemon_ctl.rb. In the process a few bugs were fixed.
84
+ * Added a gemspec.
85
+ * Documentation and test suite updates.
86
+
87
+ == 0.5.1 - 18-Jun-2006
88
+ * Added the Service.open method.
89
+ * The Service.new method now accepts a block, and automatically closes itself
90
+ at the end of the block.
91
+ * Fixed in a bug in the Service.create method where setting dependencies
92
+ was not working properly. Thanks go to Scott Harper for the spot.
93
+ * The 'interactive?' struct member is now just 'interactive' since Ruby no
94
+ longer supports question marks in struct member names. UGH.
95
+ * The block for Service#configure_service is no longer optional.
96
+ * Replaced ClipSrv with W32Time for most of the test methods in tc_service.rb
97
+ because it had a dependency that is disabled on most systems.
98
+ * Added a tweak to the extconf.rb file to help with the test suite.
99
+ * Some documentation updates and corrections.
100
+
101
+ == 0.5.0 - 26-Nov-2005
102
+ * Added a service_init hook, and (internally) altered the way the service
103
+ starts. This was done to deal with services that need to perform any
104
+ initialization in the Daemon itself before the service starts. Previously
105
+ this would result in the service timing out during startup.
106
+
107
+ Thanks go to Jamey Cribbs for spotting the problem.
108
+
109
+ * Modified the Daemon example, adding a service_init hook that does about 10
110
+ seconds worth of initialization before finally starting. See the comments
111
+ in examples\daemon_test.rb for more information.
112
+ * Minor test and README changes.
113
+
114
+ == 0.4.6 - 24-May-2005
115
+ * Fixed an initialization bug that could cause Daemons to fail unless the
116
+ win32-service package was the last package require'd.
117
+ * Altered the Service.start method. It now takes any number of arguments
118
+ (after the service and host name). These arguments are passed to the
119
+ service's Service_Main() function.
120
+ * The Service.services method now returns an Array of ServiceStruct's in
121
+ non-block form.
122
+ * The Service.start, Service.pause, Service.resume, Service.stop and
123
+ Service.delete methods now return the class (self), not 'true'.
124
+ * Added the ability to add or configure the service description in
125
+ Service#create_service or Service#configure, respectively.
126
+ * Fixed a bug in the Service.start method where false positives could result.
127
+ * Updated the ServiceStatus struct to include pid and service_flags on Win2k
128
+ or later.
129
+ * Unicode is now the default setting as far as internal string handling. It
130
+ will still work fine with 'regular' text.
131
+ * Added safe string handling for string input values.
132
+ * Added rdoc comments into the C source.
133
+ * Made the service.txt and daemon.txt files rdoc friendly.
134
+ * Removed the service.rd and daemon.rd files. If you want html documentation,
135
+ run rdoc over the service.txt and daemon.txt files.
136
+ * The dreaded "code cleanup".
137
+
138
+ == 0.4.5 - 28-Feb-2005
139
+ * Fixed an accessor bug in Service#create. Thanks go to Nathaniel Talbott
140
+ for the spot.
141
+ * Eliminated a warning that appeared starting in Ruby 1.8.2 regarding Struct
142
+ redefinitions.
143
+ * Moved 'examples' directory to toplevel directory.
144
+ * Deleted the 'test2.rb' example. This was supplanted by the 'daemon_test.rb'
145
+ script.
146
+ * Renamed the 'test.rb' file to 'services_test.rb'.
147
+ * Made this document rdoc friendly.
148
+
149
+ == 0.4.4 - 27-Aug-2004
150
+ * Modified the Service class to use the newer allocation framework. The
151
+ Daemon class already used this, hence no major version bump.
152
+ * Fixed in a bug in the create_service() method with regards to the
153
+ 'dependencies' option and null arguments (you no longer need to specify
154
+ an empty array).
155
+
156
+ == 0.4.3 - 14-Aug-2004
157
+ * Fixed the Daemon class by adding back the constants it needed in order to
158
+ run. I accidentally broke this when I changed the Daemon class from being
159
+ a subclass of Service to being its own class.
160
+ * Added a separate test suite for the Daemon class, tc_daemon.rb, to help
161
+ me from making that mistake ever again. :)
162
+ * Updated the daemon_test.rb script a bit to report error messages should
163
+ any occur.
164
+ * Minor doc updates
165
+
166
+ == 0.4.2 - 10-Jul-2004
167
+ * The Daemon class is no longer a subclass of Service.
168
+ * Added the 'pid' and 'service_flags' struct members to the Win32Service
169
+ struct. These members are only available to folks using Windows 2000 or
170
+ later and who compile with VC++ 7.0 or later (including the .NET SDK).
171
+ * The Service.services method now accepts a group name as an optional third
172
+ argument. Again, you must be using Windows 2000 or later and compile with
173
+ VC++ 7.0 or later (including the .NET SDK).
174
+ * The deprecated STR2CSTR() functions were replaced with StringValuePtr().
175
+ This also means that as of this version, win32-service requires Ruby
176
+ 1.8.0 or greater.
177
+ * Moved the sample programs to doc/examples
178
+ * Removed the .html files under /doc. You can generate that on your own if
179
+ you like.
180
+
181
+ == 0.4.1 - 14-Mar-2004
182
+ * Added the exists? class method and corresponding test suite additions.
183
+ * Pushed the ServiceError and DaemonError classes under the Win32 module.
184
+ * Normalized tc_service.rb so that it can be run outside of the test directory
185
+ more easily.
186
+
187
+ == 0.4.0 - 9-Feb-2004
188
+ * Changed "worker" method to "service_main" method.
189
+ * Added event hooks for stop, pause, resume, etc. See the documentation for
190
+ further details. (Thanks Park Heesob)
191
+ * Some of the Daemon functions were raising ServiceError. They have been
192
+ changed to DaemonError.
193
+ * Updated the daemon_test.rb file to use the new event hooks.
194
+ * Documentation additions and updates.
195
+
196
+ == 0.3.0 - 31-Jan-2004
197
+ * Added a Daemon subclass. This allows you to run Ruby programs as a service.
198
+ Please see the documentation for more details. (Thanks Park Heesob). This
199
+ should be considered an ALPHA release.
200
+ * The Win32ServiceError class has been renamed to just ServiceError. I felt
201
+ the "Win32" was redundant, given that it's already under the Win32 module.
202
+ * In some cases a bogus error description was being returned because the
203
+ GetLastError() function was being called too late. This has been fixed.
204
+ (Thanks Park Heesob).
205
+ * The explicit garbage collection has been removed because what I thought was
206
+ a memory leak was not, in fact, a memory leak. In addition, it was hurting
207
+ performance badly.
208
+ * The "\r\n" is now automatically stripped from error messages. This was
209
+ causing slightly garbled error messages. (Thanks Park Heesob).
210
+ * Added explicit closing of the Service Control Manager handle in the
211
+ services() function for those rare cases where it may fail while reading
212
+ service information.
213
+ * Made some of the error strings a bit more descriptive.
214
+ * Test suite and documentation additions, including a sample daemon program
215
+ in the test directory called "daemon_test.rb".
216
+
217
+ == 0.2.2 - 15-Jan-2004
218
+ * Fixed a mistake in the service_init declaration within Init_service().
219
+ * Fixed bug in the service_init function with regards to desired access.
220
+ * Modified service_free() function to explicitly set the hSCManager handle
221
+ to NULL and modified the service_close() method to test hSCManager handle
222
+ for NULL value. This should eliminate accidentally trying to close an
223
+ already closed handle, which may have happened as the result of a free()
224
+ call. (Thanks Park Heesob).
225
+ * Added explicit garbage collection in Service.services() method.
226
+ * More explicit about closing open HANDLE's when error conditions arise.
227
+
228
+ == 0.2.1 - 2-Nov-2003
229
+ * Made the exported less redundant and less verbose, e.g.
230
+ Service::SERVICE_DISABLED is now just Service::DISABLED. The same is true
231
+ for the service control constants, i.e. the 'SC_' has been removed.
232
+ * Corresponding test suite changes.
233
+
234
+ == 0.2.0 - 16-Oct-2003
235
+ * The constructor has been changed. It now only takes a machine name and a
236
+ desired access for arguments. The keyword arguments are now part of the
237
+ create_service method() and only in block form. See the documentation for
238
+ more details.
239
+ * Added a configure_service() and close() instance methods.
240
+ * Added several new constants to allow finer control over created and
241
+ configured services.
242
+ * Added Win32ServiceError as an exception. All failures now raise this
243
+ error instead of a vanilla StandardError.
244
+ * Moved some common code into the service.h file.
245
+
246
+ == 0.1.0 - 10-Oct-2003
247
+ - Initial release