From 4492452994eceb344e0d60111157a0b9ec72a9b8 Mon Sep 17 00:00:00 2001 From: Antonio Nuno Monteiro Date: Thu, 7 May 2020 19:20:07 -0700 Subject: [PATCH] Prep for 0.1.0 --- CHANGES.md | 5 +++++ README.md | 4 +++- archi.opam | 5 +++++ nix/sources.nix | 7 +++---- 4 files changed, 16 insertions(+), 5 deletions(-) create mode 100644 CHANGES.md diff --git a/CHANGES.md b/CHANGES.md new file mode 100644 index 0000000..873d542 --- /dev/null +++ b/CHANGES.md @@ -0,0 +1,5 @@ +0.1.0 2020-05-07 +-------------- + +- Initial public release + diff --git a/README.md b/README.md index 7d6eac5..f55ac86 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,9 @@ their dependencies. ## Installation -Archi is currently unreleased. +```shell +$ opam install archi # choose your preferred runtime: archi-lwt archi-async +``` # Usage & Examples diff --git a/archi.opam b/archi.opam index b8147ad..4d9766d 100644 --- a/archi.opam +++ b/archi.opam @@ -17,3 +17,8 @@ depends: [ ] synopsis: "A library for managing the lifecycle of stateful components in OCaml" +description: +""" +Archi is an OCaml library for managing the lifecycle of stateful components and +their dependencies. +""" diff --git a/nix/sources.nix b/nix/sources.nix index 1228392..47e412c 100644 --- a/nix/sources.nix +++ b/nix/sources.nix @@ -1,10 +1,9 @@ { ocamlVersion ? "4_10" }: let - overlays = builtins.fetchTarball { - url = https://github.com/anmonteiro/nix-overlays/archive/5d6ac00.tar.gz; - sha256 = "0dl92riggcz2zxrlrkqh51rbjz2kc5k8ad2wri1y2ivk3b6qa37n"; - }; + overlays = + builtins.fetchTarball + https://github.com/anmonteiro/nix-overlays/archive/3ce96cd.tar.gz; in