Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
K.Kosako committed Aug 3, 2017
2 parents cff4b69 + c4da8e0 commit 65de756
Show file tree
Hide file tree
Showing 29 changed files with 2,932 additions and 920 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 2.8)
project(oniguruma C)

set(PACKAGE onig)
set(PACKAGE_VERSION "6.4.0")
set(PACKAGE_VERSION "6.5.0")

set(USE_COMBINATION_EXPLOSION_CHECK 0)
set(USE_CRNL_AS_LINE_TERMINATOR 0)
Expand Down
14 changes: 14 additions & 0 deletions HISTORY
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
History

2017/08/03: Version 6.5.0

2017/07/30: [new] support Absent clear (Absent functions)
2017/07/25: abolish configure option: --enable-combination-explosion-check
2017/07/23: [new] support Absent functions (?~...)
2017/07/14: fix #65: SIZEOF_SIZE_T doesn't exist on certain architecutres
2017/07/11: [new] support \O (true anychar)
2017/07/10: [new] support \K (keep)
2017/07/10: add new node type: NODE_GIMMICK
2017/07/07: [new] support \N (no newline)
2017/07/05: [new] support \R (general newline)
2017/07/05: [new] support if-then-else syntax
2017/07/04: [new] support backref validity checker

2017/07/03: Version 6.4.0

2017/06/30: fix memory leaks
Expand Down
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,19 @@ Supported character encodings:
* CP1251: contributed by Byte


New feature of version 6.5.0
--------------------------

* NEW: \K (keep)
* NEW: \R (general newline) \N (no newline)
* NEW: \O (true anychar)
* NEW: if-then-else syntax (?(...)...\|...)
* NEW: Backreference validity checker (*original)
* NEW: Absent repeater (?~absent)
* NEW: Absent expression (?~|absent|expr) (*original)
* NEW: Absent range cutter (?~|absent) (*original)


New feature of version 6.4.0
--------------------------

Expand Down
2 changes: 1 addition & 1 deletion compile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

scriptversion=2012-10-14.11; # UTC

# Copyright (C) 1999-2013 Free Software Foundation, Inc.
# Copyright (C) 1999-2014 Free Software Foundation, Inc.
# Written by Tom Tromey <[email protected]>.
#
# This program is free software; you can redistribute it and/or modify
Expand Down
Loading

0 comments on commit 65de756

Please sign in to comment.