Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.4.0 release #60

Merged
merged 4 commits into from May 12, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 7 additions & 2 deletions CHANGES
@@ -1,8 +1,13 @@
1.3.2 (04-14-2015)
1.4.0 (12-May-2015)

* Add Re.{mark,marked,mark_set}. Regexps can now be "marked" to query post
execution if they matched.

1.3.2 (14-Apr-2015)

* Fix replacing 0 length matches (#55)

1.3.1 (03-13-2015):
1.3.1 (13-Mar-2015):

* Rename {Cset, Automata} to {Re_cset, Re_automata}

Expand Down
2 changes: 1 addition & 1 deletion _oasis
@@ -1,6 +1,6 @@
OASISFormat: 0.4
Name: re
Version: 1.3.2
Version: 1.4.0
Synopsis: Pure OCaml regular expression library
Authors: Jerome Vouillon, Thomas Gazagnaire, Anil Madhavapeddy
License: LGPL-2.0 with OCaml linking exception
Expand Down
16 changes: 8 additions & 8 deletions lib/META
@@ -1,6 +1,6 @@
# OASIS_START
# DO NOT EDIT (digest: e997602454e61eb029a2d6e192406664)
version = "1.3.2"
# DO NOT EDIT (digest: 0ec3f389164db7817d6321d87434419c)
version = "1.4.0"
description = "Pure OCaml regular expression library"
requires = "bytes"
archive(byte) = "re.cma"
Expand All @@ -9,7 +9,7 @@ archive(native) = "re.cmxa"
archive(native, plugin) = "re.cmxs"
exists_if = "re.cma"
package "str" (
version = "1.3.2"
version = "1.4.0"
description = "Str-compatible regexps"
requires = "re re.emacs"
archive(byte) = "re_str.cma"
Expand All @@ -20,7 +20,7 @@ package "str" (
)

package "posix" (
version = "1.3.2"
version = "1.4.0"
description = "POSIX-compatible regexps"
requires = "re"
archive(byte) = "re_posix.cma"
Expand All @@ -31,7 +31,7 @@ package "posix" (
)

package "perl" (
version = "1.3.2"
version = "1.4.0"
description = "Perl-compatible regexps"
requires = "re"
archive(byte) = "re_perl.cma"
Expand All @@ -42,7 +42,7 @@ package "perl" (
)

package "pcre" (
version = "1.3.2"
version = "1.4.0"
description = "subset of PCRE using the Re engine"
requires = "re re.perl"
archive(byte) = "re_pcre.cma"
Expand All @@ -53,7 +53,7 @@ package "pcre" (
)

package "glob" (
version = "1.3.2"
version = "1.4.0"
description = "Shell glob regexps"
requires = "re"
archive(byte) = "re_glob.cma"
Expand All @@ -64,7 +64,7 @@ package "glob" (
)

package "emacs" (
version = "1.3.2"
version = "1.4.0"
description = "Emacs-compatible regexps"
requires = "re"
archive(byte) = "re_emacs.cma"
Expand Down
4 changes: 2 additions & 2 deletions lib_test/META
@@ -1,6 +1,6 @@
# OASIS_START
# DO NOT EDIT (digest: 2885ff6f6d78fedd8087ea393239740f)
version = "1.3.2"
# DO NOT EDIT (digest: 47d093767821af6123fc65ec99e824e0)
version = "1.4.0"
description = "Pure OCaml regular expression library"
requires = "oUnit"
archive(byte) = "fort_unit.cma"
Expand Down
6 changes: 3 additions & 3 deletions setup.ml
@@ -1,7 +1,7 @@
(* setup.ml generated for the first time by OASIS v0.2.1~alpha1 *)

(* OASIS_START *)
(* DO NOT EDIT (digest: 3ef35ef7f2d7f78eb25b15c78f7786c8) *)
(* DO NOT EDIT (digest: 3e45a4ad95116e03dae9381533aa4371) *)
(*
Regenerated by OASIS v0.4.5
Visit http://oasis.forge.ocamlcore.org for more information and
Expand Down Expand Up @@ -6981,7 +6981,7 @@ let setup_t =
alpha_features = ["compiled_setup_ml"];
beta_features = [];
name = "re";
version = "1.3.2";
version = "1.4.0";
license =
OASISLicense.DEP5License
(OASISLicense.DEP5Unit
Expand Down Expand Up @@ -7681,7 +7681,7 @@ let setup_t =
};
oasis_fn = Some "_oasis";
oasis_version = "0.4.5";
oasis_digest = Some "�mm\145\031�����s[\015���";
oasis_digest = Some "�\027�\145)�\158\016�\135�\011�`\012�";
oasis_exec = None;
oasis_setup_args = [];
setup_update = false
Expand Down