Skip to content

Commit

Permalink
release 5.1.1
Browse files Browse the repository at this point in the history
- remove unused primitive caml_compression_available during bootstrap
  • Loading branch information
Octachron committed Dec 7, 2023
1 parent 185d8e2 commit bdda743
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 32 deletions.
4 changes: 2 additions & 2 deletions Changes
@@ -1,5 +1,5 @@
OCaml 5.1.1
-----------
OCaml 5.1.1 (8 December 2023)
----------------------------

### Standard library:

Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1,4 +1,4 @@
5.1.1+dev3-2023-12-7
5.1.1

# Starting with OCaml 4.14, although the version string that appears above is
# still correct and this file can thus still be used to figure it out,
Expand Down
Binary file modified boot/ocamlc
Binary file not shown.
Binary file modified boot/ocamllex
Binary file not shown.
4 changes: 2 additions & 2 deletions build-aux/ocaml_version.m4
Expand Up @@ -25,7 +25,7 @@
# The following macro, OCAML__DEVELOPMENT_VERSION, should be either
# [true] of [false].

m4_define([OCAML__DEVELOPMENT_VERSION], [true])
m4_define([OCAML__DEVELOPMENT_VERSION], [false])

# The three following components (major, minor and patch level) MUST be
# integers. They MUST NOT be left-padded with zeros and all of them,
Expand All @@ -36,7 +36,7 @@ m4_define([OCAML__VERSION_MINOR], [1])
m4_define([OCAML__VERSION_PATCHLEVEL], [1])
# Note that the OCAML__VERSION_EXTRA string defined below is always empty
# for officially-released versions of OCaml.
m4_define([OCAML__VERSION_EXTRA], [dev3-2023-12-7])
m4_define([OCAML__VERSION_EXTRA], [])

# The OCAML__VERSION_EXTRA_PREFIX macro defined below should be a
# single character:
Expand Down
40 changes: 20 additions & 20 deletions configure

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions ocaml-variants.opam
@@ -1,7 +1,7 @@
opam-version: "2.0"
version: "5.1.1+trunk"
version: "5.1.1"
license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
synopsis: "OCaml development version"
synopsis: "Official release of OCaml 5.1.1"
depends: [
"ocaml" {= "5.1.1" & post}
"base-unix" {post}
Expand Down
5 changes: 0 additions & 5 deletions runtime/intern.c
Expand Up @@ -794,11 +794,6 @@ size_t (*caml_intern_decompress_input)(unsigned char *,
const unsigned char *,
uintnat) = NULL;

CAMLprim value caml_compression_available(value vunit)
{
return Val_bool(caml_intern_decompress_input != NULL);
}

static void intern_decompress_input(struct caml_intern_state * s,
const char * fun_name,
struct marshal_header * h)
Expand Down

0 comments on commit bdda743

Please sign in to comment.