Skip to content

Commit

Permalink
v0.11.0
Browse files Browse the repository at this point in the history
Signed-off-by: Takuro Ashie <[email protected]>
  • Loading branch information
ashie committed Aug 1, 2024
1 parent fe12efd commit 792555a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions ext/winevt/winevt_query.c
Original file line number Diff line number Diff line change
Expand Up @@ -663,31 +663,31 @@ Init_winevt_query(VALUE rb_cEventLog)

/*
* EVT_QUERY_FLAGS enumeration: EvtQueryChannelPath
* @since 0.10.3
* @since 0.11.0
* @see https://learn.microsoft.com/en-us/windows/win32/api/winevt/ne-winevt-evt_query_flags
*/
rb_define_const(rb_cFlag, "ChannelPath", LONG2NUM(EvtQueryChannelPath));
/*
* EVT_QUERY_FLAGS enumeration: EvtQueryFilePath
* @since 0.10.3
* @since 0.11.0
* @see https://learn.microsoft.com/en-us/windows/win32/api/winevt/ne-winevt-evt_query_flags
*/
rb_define_const(rb_cFlag, "FilePath", LONG2NUM(EvtQueryFilePath));
/*
* EVT_QUERY_FLAGS enumeration: EvtQueryForwardDirection
* @since 0.10.3
* @since 0.11.0
* @see https://learn.microsoft.com/en-us/windows/win32/api/winevt/ne-winevt-evt_query_flags
*/
rb_define_const(rb_cFlag, "ForwardDirection", LONG2NUM(EvtQueryForwardDirection));
/*
* EVT_QUERY_FLAGS enumeration: EvtQueryReverseDirection
* @since 0.10.3
* @since 0.11.0
* @see https://learn.microsoft.com/en-us/windows/win32/api/winevt/ne-winevt-evt_query_flags
*/
rb_define_const(rb_cFlag, "ReverseDirection", LONG2NUM(EvtQueryReverseDirection));
/*
* EVT_QUERY_FLAGS enumeration: EvtSeekOriginMask
* @since 0.10.3
* @since 0.11.0
* @see https://learn.microsoft.com/en-us/windows/win32/api/winevt/ne-winevt-evt_query_flags
*/
rb_define_const(rb_cFlag, "TolerateQueryErrors", LONG2NUM(EvtQueryTolerateQueryErrors));
Expand Down Expand Up @@ -720,11 +720,11 @@ Init_winevt_query(VALUE rb_cEventLog)
*/
rb_define_method(rb_cQuery, "locale=", rb_winevt_query_set_locale, 1);
/*
* @since 0.10.3
* @since 0.11.0
*/
rb_define_method(rb_cQuery, "preserve_sid?", rb_winevt_query_preserve_sid_p, 0);
/*
* @since 0.10.3
* @since 0.11.0
*/
rb_define_method(rb_cQuery, "preserve_sid=", rb_winevt_query_set_preserve_sid, 1);
/*
Expand Down
4 changes: 2 additions & 2 deletions ext/winevt/winevt_subscribe.c
Original file line number Diff line number Diff line change
Expand Up @@ -808,11 +808,11 @@ Init_winevt_subscribe(VALUE rb_cEventLog)
rb_define_method(
rb_cSubscribe, "locale=", rb_winevt_subscribe_set_locale, 1);
/*
* @since 0.10.3
* @since 0.11.0
*/
rb_define_method(rb_cSubscribe, "preserve_sid?", rb_winevt_subscribe_preserve_sid_p, 0);
/*
* @since 0.10.3
* @since 0.11.0
*/
rb_define_method(rb_cSubscribe, "preserve_sid=", rb_winevt_subscribe_set_preserve_sid, 1);
/*
Expand Down
2 changes: 1 addition & 1 deletion lib/winevt/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Winevt
VERSION = "0.10.2"
VERSION = "0.11.0"
end

0 comments on commit 792555a

Please sign in to comment.