[Groonga-commit] groonga/groonga at 7c83818 [master] Fix version

Back to archive index

Kouhei Sutou null+****@clear*****
Mon Nov 17 22:42:12 JST 2014


Kouhei Sutou	2014-11-17 22:42:12 +0900 (Mon, 17 Nov 2014)

  New Revision: 7c83818b28df421bb6d0e2aeca48e5c629dded8b
  https://github.com/groonga/groonga/commit/7c83818b28df421bb6d0e2aeca48e5c629dded8b

  Message:
    Fix version

  Modified files:
    include/groonga/token.h
    include/groonga/tokenizer.h

  Modified: include/groonga/token.h (+9 -9)
===================================================================
--- include/groonga/token.h    2014-11-17 22:41:19 +0900 (1ba9307)
+++ include/groonga/token.h    2014-11-17 22:42:12 +0900 (fa24756)
@@ -44,56 +44,56 @@ typedef enum {
  * If a document or query contains no tokens, push an empty string with
  * GRN_TOKEN_LAST as a token.
  *
- * @since 4.0.7
+ * @since 4.0.8
  */
 typedef unsigned int grn_token_status;
 
 /*
  * GRN_TOKEN_CONTINUE means that the next token is not the last one.
  *
- * @since 4.0.7
+ * @since 4.0.8
  */
 #define GRN_TOKEN_CONTINUE           (0)
 /*
  * GRN_TOKEN_LAST means that the next token is the last one.
  *
- * @since 4.0.7
+ * @since 4.0.8
  */
 #define GRN_TOKEN_LAST               (0x01L<<0)
 /*
  * GRN_TOKEN_OVERLAP means that ...
  *
- * @since 4.0.7
+ * @since 4.0.8
  */
 #define GRN_TOKEN_OVERLAP            (0x01L<<1)
 /*
  * GRN_TOKEN_UNMATURED means that ...
  *
- * @since 4.0.7
+ * @since 4.0.8
  */
 #define GRN_TOKEN_UNMATURED          (0x01L<<2)
 /*
  * GRN_TOKEN_REACH_END means that ...
  *
- * @since 4.0.7
+ * @since 4.0.8
  */
 #define GRN_TOKEN_REACH_END          (0x01L<<3)
 /*
  * GRN_TOKEN_SKIP means that the token is skipped
  *
- * @since 4.0.7
+ * @since 4.0.8
  */
 #define GRN_TOKEN_SKIP               (0x01L<<4)
 /*
  * GRN_TOKEN_SKIP_WITH_POSITION means that the token and postion is skipped
  *
- * @since 4.0.7
+ * @since 4.0.8
  */
 #define GRN_TOKEN_SKIP_WITH_POSITION (0x01L<<5)
 /*
  * GRN_TOKEN_FORCE_PREIX that the token is used common prefix search
  *
- * @since 4.0.7
+ * @since 4.0.8
  */
 #define GRN_TOKEN_FORCE_PREFIX       (0x01L<<6)
 

  Modified: include/groonga/tokenizer.h (+9 -9)
===================================================================
--- include/groonga/tokenizer.h    2014-11-17 22:41:19 +0900 (e5e279c)
+++ include/groonga/tokenizer.h    2014-11-17 22:42:12 +0900 (6659308)
@@ -149,56 +149,56 @@ GRN_PLUGIN_EXPORT void grn_tokenizer_token_fin(grn_ctx *ctx, grn_tokenizer_token
  * If a document or query contains no tokens, push an empty string with
  * GRN_TOKENIZER_TOKEN_LAST as a token.
  *
- * @deprecated since 4.0.7. Use grn_token_status instead.
+ * @deprecated since 4.0.8. Use grn_token_status instead.
  */
 typedef grn_token_status grn_tokenizer_status;
 
 /*
  * GRN_TOKENIZER_TOKEN_CONTINUE means that the next token is not the last one.
  *
- * @deprecated since 4.0.7. Use GRN_TOKEN_CONTINUE instead.
+ * @deprecated since 4.0.8. Use GRN_TOKEN_CONTINUE instead.
  */
 #define GRN_TOKENIZER_TOKEN_CONTINUE           GRN_TOKEN_CONTINUE
 /*
  * GRN_TOKENIZER_TOKEN_LAST means that the next token is the last one.
  *
- * @deprecated since 4.0.7. Use GRN_TOKEN_LAST instead.
+ * @deprecated since 4.0.8. Use GRN_TOKEN_LAST instead.
  */
 #define GRN_TOKENIZER_TOKEN_LAST               GRN_TOKEN_LAST
 /*
  * GRN_TOKENIZER_TOKEN_OVERLAP means that ...
  *
- * @deprecated since 4.0.7. Use GRN_TOKEN_OVERLAP instead.
+ * @deprecated since 4.0.8. Use GRN_TOKEN_OVERLAP instead.
  */
 #define GRN_TOKENIZER_TOKEN_OVERLAP            GRN_TOKEN_OVERLAP
 /*
  * GRN_TOKENIZER_TOKEN_UNMATURED means that ...
  *
- * @deprecated since 4.0.7. Use GRN_TOKEN_UNMATURED instead.
+ * @deprecated since 4.0.8. Use GRN_TOKEN_UNMATURED instead.
  */
 #define GRN_TOKENIZER_TOKEN_UNMATURED          GRN_TOKEN_UNMATURED
 /*
  * GRN_TOKENIZER_TOKEN_REACH_END means that ...
  *
- * @deprecated since 4.0.7. Use GRN_TOKEN_REACH_END instead.
+ * @deprecated since 4.0.8. Use GRN_TOKEN_REACH_END instead.
  */
 #define GRN_TOKENIZER_TOKEN_REACH_END          GRN_TOKEN_REACH_END
 /*
  * GRN_TOKENIZER_TOKEN_SKIP means that the token is skipped
  *
- * @deprecated since 4.0.7. Use GRN_TOKEN_SKIP instead.
+ * @deprecated since 4.0.8. Use GRN_TOKEN_SKIP instead.
  */
 #define GRN_TOKENIZER_TOKEN_SKIP               GRN_TOKEN_SKIP
 /*
  * GRN_TOKENIZER_TOKEN_SKIP_WITH_POSITION means that the token and postion is skipped
  *
- * @deprecated since 4.0.7. Use GRN_TOKEN_SKIP_WITH_POSITION instead.
+ * @deprecated since 4.0.8. Use GRN_TOKEN_SKIP_WITH_POSITION instead.
  */
 #define GRN_TOKENIZER_TOKEN_SKIP_WITH_POSITION GRN_TOKEN_SKIP_WITH_POSITION
 /*
  * GRN_TOKENIZER_TOKEN_FORCE_PREIX that the token is used common prefix search
  *
- * @deprecated since 4.0.7. Use GRN_TOKEN_FORCE_PREIX instead.
+ * @deprecated since 4.0.8. Use GRN_TOKEN_FORCE_PREIX instead.
  */
 #define GRN_TOKENIZER_TOKEN_FORCE_PREFIX       GRN_TOKEN_FORCE_PREFIX
 
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index