Skip to content

Commit

Permalink
Bump version and update CHANGES
Browse files Browse the repository at this point in the history
  • Loading branch information
AltGr committed Nov 24, 2014
1 parent ddc4066 commit 6703823
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 14 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG
@@ -1,3 +1,16 @@
## 1.1.1
* fixed comment association for modules and one-per-line values
* better errors on cmi/cmt from incompatible compiler versions
* fixed version reporting

## 1.1.0
* completely rewritten ocp-browser by Gabriel Radanne
* supports OCaml 4.02 (with git branching)
* respect file loading order, which avoids some lookup loop bugs
* fixed and disabled type qualification by default
* fixed handling of functors
* get implementation positions through module aliases

## 1.0.3
* improved emacs mode, now supporting both auto-comlete and company
* fixed return value of ocp-grep
Expand Down
2 changes: 1 addition & 1 deletion META
@@ -1,5 +1,5 @@
package "lib" (
version = "1.0.3"
version = "1.1.1"
directory = "lib"
archive(byte) = "ocp-index-lib.cma"
archive(native) = "ocp-index-lib.cmxa"
Expand Down
18 changes: 9 additions & 9 deletions configure
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for ocp-index 1.0.3.
# Generated by GNU Autoconf 2.69 for ocp-index 1.1.1.
#
#
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -578,8 +578,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='ocp-index'
PACKAGE_TARNAME='ocp-index'
PACKAGE_VERSION='1.0.3'
PACKAGE_STRING='ocp-index 1.0.3'
PACKAGE_VERSION='1.1.1'
PACKAGE_STRING='ocp-index 1.1.1'
PACKAGE_BUGREPORT=''
PACKAGE_URL=''

Expand Down Expand Up @@ -1198,7 +1198,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 ocp-index 1.0.3 to adapt to many kinds of systems.
\`configure' configures ocp-index 1.1.1 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
Expand Down Expand Up @@ -1259,7 +1259,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of ocp-index 1.0.3:";;
short | recursive ) echo "Configuration of ocp-index 1.1.1:";;
esac
cat <<\_ACEOF
Expand Down Expand Up @@ -1338,7 +1338,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
ocp-index configure 1.0.3
ocp-index configure 1.1.1
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
Expand Down Expand Up @@ -1395,7 +1395,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 ocp-index $as_me 1.0.3, which was
It was created by ocp-index $as_me 1.1.1, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
Expand Down Expand Up @@ -4231,7 +4231,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 ocp-index $as_me 1.0.3, which was
This file was extended by ocp-index $as_me 1.1.1, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -4284,7 +4284,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="\\
ocp-index config.status 1.0.3
ocp-index config.status 1.1.1
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
@@ -1,4 +1,4 @@
AC_INIT(ocp-index,1.0.3)
AC_INIT(ocp-index,1.1.1)
AC_COPYRIGHT(Copyright 2014 OcamlPro SAS)

AC_CONFIG_MACRO_DIR([m4])
Expand Down
2 changes: 1 addition & 1 deletion opam
@@ -1,6 +1,6 @@
opam-version: "1.2"
name: "ocp-index"
version: "1.1.0"
version: "1.1.1"
maintainer: "louis.gesbert@ocamlpro.com"
authors: [
"Louis Gesbert"
Expand Down
2 changes: 1 addition & 1 deletion src/grepMain.ml
Expand Up @@ -307,7 +307,7 @@ let () =
Term.eval
(Term.(pure grep
$ Args.pattern $ Args.files $ Args.color $ Args.strings $ Args.regexp),
Term.info "ocp-grep" ~version:"1.0.3" ~doc ~man)
Term.info "ocp-grep" ~version:"1.1.1" ~doc ~man)
with
| `Ok true -> exit 0
| `Ok false -> exit 1
Expand Down
2 changes: 1 addition & 1 deletion src/indexMain.ml
Expand Up @@ -31,7 +31,7 @@ let default_cmd =
in
let doc = "Explore the interfaces of installed OCaml libraries." in
Term.(ret (pure (fun _ -> `Help (`Pager, None)) $ common_opts)),
Term.info "ocp-index" ~version:"1.0.3" ~doc ~man
Term.info "ocp-index" ~version:"1.1.1" ~doc ~man

let format_man =
let formats = [
Expand Down

0 comments on commit 6703823

Please sign in to comment.