diff --git a/CHANGES.md b/CHANGES.md index 1cc06dd..6814b29 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,4 @@ -# Development version +# 2022-09-05, 4.8.0 - Support for Clang/LLVM 15.0.0 diff --git a/VERSION b/VERSION index 1163055..6ca6df1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.7.0 \ No newline at end of file +4.8.0 \ No newline at end of file diff --git a/clangml.opam b/clangml.opam index b30ff2d..a37050d 100644 --- a/clangml.opam +++ b/clangml.opam @@ -1,6 +1,6 @@ # This file is generated by dune, edit dune-project instead opam-version: "2.0" -version: "4.7.0" +version: "4.8.0" synopsis: "OCaml bindings for Clang API" description: """ clangml provides bindings to call the Clang API from OCaml. @@ -9,23 +9,22 @@ maintainer: ["Thierry Martinez "] authors: ["Thierry Martinez "] license: "BSD-2-Clause" homepage: "https://github.com/thierry-martinez/clangml/" -doc: "https://github.com/thierry-martinez/clangml/blob/v4.7.0/README.md" +doc: "https://github.com/thierry-martinez/clangml/blob/v4.8.0/README.md" bug-reports: "https://github.com/thierry-martinez/clangml/issues" depends: [ "conf-libclang" "conf-ncurses" "conf-zlib" - "dune" {>= "3.0" & >= "1.11.0"} - "stdcompat" {>= "13"} + "dune" {>= "3.0" & >= "3.0"} + "stdcompat" {>= "19"} "ocaml" {>= "4.08.0"} "ocamlfind" {build & >= "1.8.0"} "ocamlcodoc" {with-test & >= "1.0.1"} "pattern" {with-test & >= "0.2.0"} "ppxlib" {>= "0.23"} - "metapp" {>= "0.4.0"} + "metapp" {>= "0.4.4"} "metaquot" {>= "0.4.0"} "refl" {>= "0.4.0"} - "ppxlib" {>= "0.23"} "odoc" {with-doc & >= "1.5.1"} "ocaml-migrate-parsetree" {>= "2.2.0"} ] diff --git a/configure b/configure index 23b4212..bc45a08 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for clangml 4.7.0. +# Generated by GNU Autoconf 2.69 for clangml 4.8.0. # # Report bugs to . # @@ -580,8 +580,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='clangml' PACKAGE_TARNAME='clangml' -PACKAGE_VERSION='4.7.0' -PACKAGE_STRING='clangml 4.7.0' +PACKAGE_VERSION='4.8.0' +PACKAGE_STRING='clangml 4.8.0' PACKAGE_BUGREPORT='Thierry.Martinez@inria.fr' PACKAGE_URL='https://github.com/thierry.martinez/clangml/' @@ -1401,7 +1401,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures clangml 4.7.0 to adapt to many kinds of systems. +\`configure' configures clangml 4.8.0 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1468,7 +1468,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of clangml 4.7.0:";; + short | recursive ) echo "Configuration of clangml 4.8.0:";; esac cat <<\_ACEOF @@ -1574,7 +1574,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -clangml configure 4.7.0 +clangml configure 4.8.0 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1960,7 +1960,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by clangml $as_me 4.7.0, which was +It was created by clangml $as_me 4.8.0, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2823,7 +2823,7 @@ fi # Define the identity of the package. PACKAGE='clangml' - VERSION='4.7.0' + VERSION='4.8.0' cat >>confdefs.h <<_ACEOF @@ -8572,7 +8572,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by clangml $as_me 4.7.0, which was +This file was extended by clangml $as_me 4.8.0, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -8630,7 +8630,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -clangml config.status 4.7.0 +clangml config.status 4.8.0 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/dune-project b/dune-project index cfe4130..5994991 100644 --- a/dune-project +++ b/dune-project @@ -8,8 +8,8 @@ (source (github "thierry-martinez/clangml")) (homepage "https://github.com/thierry-martinez/clangml/") (bug_reports "https://github.com/thierry-martinez/clangml/issues") -(documentation "https://github.com/thierry-martinez/clangml/blob/v4.7.0/README.md") -(version "4.7.0") +(documentation "https://github.com/thierry-martinez/clangml/blob/v4.8.0/README.md") +(version "4.8.0") (package (name clangml) @@ -21,16 +21,15 @@ clangml provides bindings to call the Clang API from OCaml. conf-libclang conf-ncurses conf-zlib - (dune (>= 1.11.0)) - (stdcompat (>= 13)) + (dune (>= 3.0)) + (stdcompat (>= 19)) (ocaml (>= 4.08.0)) (ocamlfind (and :build (>= 1.8.0))) (ocamlcodoc (and :with-test (>= 1.0.1))) (pattern (and :with-test (>= 0.2.0))) (ppxlib (>= 0.23)) - (metapp (>= 0.4.0)) + (metapp (>= 0.4.4)) (metaquot (>= 0.4.0)) (refl (>= 0.4.0)) - (ppxlib (>= 0.23)) (odoc (and :with-doc (>= 1.5.1))) (ocaml-migrate-parsetree (>= 2.2.0))))