From 000855b3c70c1c38524740af9f302c5ea6379844 Mon Sep 17 00:00:00 2001 From: Emilien Taque Date: Mon, 3 Jun 2019 11:58:28 +0200 Subject: [PATCH] Fix public project name. --- Makefile | 2 +- dune-project | 2 +- lib/dune | 2 +- lib_test/dune | 2 +- semver.opam => semver2.opam | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) rename semver.opam => semver2.opam (95%) diff --git a/Makefile b/Makefile index 786a991..9cfe99c 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ build: dune build @install install-deps: - opam install --deps-only ./semver.opam + opam install --deps-only ./semver2.opam test: dune runtest diff --git a/dune-project b/dune-project index 5d08059..07a2de2 100644 --- a/dune-project +++ b/dune-project @@ -1,2 +1,2 @@ (lang dune 1.2) -(name semver) +(name semver2) diff --git a/lib/dune b/lib/dune index 45c9eec..9dcd7d0 100644 --- a/lib/dune +++ b/lib/dune @@ -1,6 +1,6 @@ (library (name semver) - (public_name semver) + (public_name semver2) (libraries angstrom) (inline_tests) (preprocess (pps ppx_inline_test))) diff --git a/lib_test/dune b/lib_test/dune index ab35e35..0b03a75 100644 --- a/lib_test/dune +++ b/lib_test/dune @@ -1,6 +1,6 @@ (executable (name test_semver) - (libraries semver ounit yojson)) + (libraries semver2 ounit yojson)) (alias (name runtest) diff --git a/semver.opam b/semver2.opam similarity index 95% rename from semver.opam rename to semver2.opam index 53202ab..85e2eaa 100644 --- a/semver.opam +++ b/semver2.opam @@ -2,7 +2,7 @@ opam-version: "2.0" name: "semver2" version: "1.0.0" maintainer: "info@dividat.com" -authors: ["Dividat Gmbh"] +authors: ["Dividat AG"] synopsis: "Semantic version handling for OCaml" license: "MIT" homepage: "https://github.com/dividat/ocaml-semver"