Skip to content

Commit

Permalink
Release 0.5.6!
Browse files Browse the repository at this point in the history
  • Loading branch information
toots committed Sep 13, 2018
1 parent e23a23d commit 046169b
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 53 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.5.6 (2018-09-12)
=====
* Switch to the dune build system.

0.5.5 (2017-10-13)
=====
* Make sure that LDFLAGS is honored during build.
Expand Down
17 changes: 17 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,20 @@ clean:

all-supported-ocaml-versions:
dune build @default @runtest --workspace dune-workspace.dev

install-dev:
opam install -y opam-query opam-publish tls

VERSION := $$(opam query --version)
NAME_VERSION := $$(opam query --name-version)
ARCHIVE := $$(opam query --archive)

release:
git tag -a v$(VERSION) -m "Version $(VERSION)."
git push origin v$(VERSION)
opam publish prepare $(NAME_VERSION) $(ARCHIVE)
cp descr $(NAME_VERSION)
grep -Ev '^(name|version):' opam >$(NAME_VERSION)/opam
opam publish submit $(NAME_VERSION)
rm -rf $(NAME_VERSION)

19 changes: 2 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,28 +7,13 @@ OCaml-SSL - OCaml bindings for the libssl

Copyright (c) 2003-2015 the Savonet Team.

Dependencies
------------

To build this library you need to have OCaml 3.08 (and the
[bytes](https://github.com/chambart/ocaml-bytes) module if your OCaml is older
than 4.03) and the [openssl](https://www.openssl.org/) library.

Installation
------------

To compile the program type:

```
./configure
make
```

(you can set specific build options with the configure script, see
`./configure --help`) then, to install it, type as root:
`ocaml-ssl` can be installed via [OPAM](https://opam.ocaml.org):

```
make install
opam install ssl
```

Is this library thread-safe?
Expand Down
36 changes: 0 additions & 36 deletions README.win32

This file was deleted.

1 change: 1 addition & 0 deletions descr
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Bindings for OpenSSL
1 change: 1 addition & 0 deletions opam
2 changes: 2 additions & 0 deletions ssl.opam
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
opam-version: "1.2"
name: "ssl"
version: "0.5.6"
maintainer: "Christopher Zimmermann <christopher@gmerlin.de>"
author: "Samuel Mimram <samuel.mimram@ens-lyon.org>"
homepage: "https://github.com/savonet/ocaml-ssl"
Expand Down

0 comments on commit 046169b

Please sign in to comment.