ocaml-camlp5/0010-bump-version-number.patch

75 lines
1.9 KiB
Diff

From 8c49e5e2592be6a0c5564e6e02b02c4c731d7933 Mon Sep 17 00:00:00 2001
From: Chet Murthy <chetsky@gmail.com>
Date: Wed, 29 Apr 2020 13:10:20 -0700
Subject: [PATCH 10/10] bump version number
---
CHANGES | 8 ++++++++
README.md | 4 ++--
main/pcaml.ml | 2 +-
ocaml_src/main/pcaml.ml | 2 +-
4 files changed, 12 insertions(+), 4 deletions(-)
diff --git a/CHANGES b/CHANGES
index 2796852d..b077be36 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,11 @@
+Camlp5 Version 7.12:
+--------------------
+
+* [29 Apr 20] upgrade to minimal support for Ocaml 4.11.0
+ (specifically 4.11.0+dev2-2020-04-22). This does not provide
+ support for any new stuff in 4.11.0; indeed, stuff may break. This
+ is just minimal "build and bootstrap" support.
+
Camlp5 Version 7.11:
--------------------
diff --git a/README.md b/README.md
index e8004a9f..cc0e6381 100644
--- a/README.md
+++ b/README.md
@@ -3,10 +3,10 @@
Camlp5 is a preprocessor-pretty-printer of ocaml.
It is (theoretically) compatible with all versions of ocaml from 1.07
-to 4.10.0 (when they compile), and jocaml 3.12.0 to 3.12.1, but
+to 4.11.0 (when they compile), and jocaml 3.12.0 to 3.12.1, but
maintainers only test against versions of ocaml >= 4.00.0.
-This Camlp5 version is 7.11.
+This Camlp5 version is 7.12.
## Requirements
diff --git a/main/pcaml.ml b/main/pcaml.ml
index ab9ac6ce..19fd851e 100644
--- a/main/pcaml.ml
+++ b/main/pcaml.ml
@@ -7,7 +7,7 @@
open Printf;
-value version = "7.11";
+value version = "7.12";
value syntax_name = ref "";
value ocaml_version =
diff --git a/ocaml_src/main/pcaml.ml b/ocaml_src/main/pcaml.ml
index 91bf00ed..86f741e9 100644
--- a/ocaml_src/main/pcaml.ml
+++ b/ocaml_src/main/pcaml.ml
@@ -7,7 +7,7 @@
open Printf;;
-let version = "7.11";;
+let version = "7.12";;
let syntax_name = ref "";;
let ocaml_version =
--
2.24.1