Skip to content

Commit

Permalink
Prepare release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ygrek committed May 19, 2012
1 parent fb7ea66 commit e90a5f0
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 7 deletions.
11 changes: 8 additions & 3 deletions CHANGES
@@ -1,6 +1,11 @@
* ???
* Support ocaml/msvc build
* Support ocaml 3.12
* Sat May 19 2012 (1.1.1)
* Support build with ocaml/msvc and ocaml/mingw (Dmitry Grebeniuk)
* Update build tools (Dmitry Grebeniuk)
* OCaml 3.12 compatibility
* Mysql.Prepared: documentation comments
* Mysql.Prepared.result_metadata (Hezekiah M. Carty)
* Mysql.quick_connect: optional unix socket path
* Mysql.quick_connect: optional connection options

* Sat Dec 26 2009 (1.1.0)
* Project moved to http://ocaml-mysql.forge.ocamlcore.org
Expand Down
7 changes: 6 additions & 1 deletion Makefile.in
Expand Up @@ -32,6 +32,11 @@ cleanall: clean-demos clean-doc clean

-include OCamlMakefile

NAME=ocaml-mysql-$(VERSION)

.PHONY: release
release:
git archive --format=tar --prefix=ocaml-mysql-$(VERSION)/ v$(VERSION) | gzip > ocaml-mysql-$(VERSION).tar.gz
git tag -a -m $(VERSION) v$(VERSION)
git archive --prefix=$(NAME)/ v$(VERSION) | tar --delete $(NAME)/web | gzip > $(NAME).tar.gz
gpg -a -b $(NAME).tar.gz

10 changes: 10 additions & 0 deletions README
Expand Up @@ -123,3 +123,13 @@ Please send a patch back to the author.
You are encouraged to distribute this code under the terms of the
Lesser GNU Public License. See the file COPYING for details.

5. Authors
*=*=*=*=*=

Previous maintainers:
Christian Lindig
Shawn Wagner

Current maintainer:
ygrek <ygrek@autistici.org>

8 changes: 6 additions & 2 deletions VERSION
@@ -1,2 +1,6 @@

This is mysql, Version 1.1.0 (26-Dec-2009)

VERSION -- Version Information for mysql (syntax: Text)
[automatically generated and maintained by GNU shtool]

This is mysql, Version 1.1.1 (19-May-2012)

11 changes: 10 additions & 1 deletion etc/get_version.ml
@@ -1 +1,10 @@
Scanf.bscanf (Scanf.Scanning.from_file "VERSION") " This is mysql, Version %s@ " print_endline
let () =
let ch = open_in "VERSION" in
while true do
let s = input_line ch in
try
Scanf.sscanf s " This is mysql, Version %s@ " print_endline;
exit 0
with
_ -> ()
done

0 comments on commit e90a5f0

Please sign in to comment.