From 7dd433db9f146744a72dfc9ac635047b02cbb88e Mon Sep 17 00:00:00 2001 From: Stefan Karpinski Date: Thu, 6 Feb 2020 12:18:51 -0500 Subject: [PATCH] Project: add authors; bump version to v0.3.0 (#12) Also: remove and ignore Manifest file --- .gitignore | 1 + Manifest.toml | 33 --------------------------------- Project.toml | 8 +++++--- 3 files changed, 6 insertions(+), 36 deletions(-) delete mode 100644 Manifest.toml diff --git a/.gitignore b/.gitignore index 82520ca..5997bd7 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ +/Manifest.toml /tmp/ diff --git a/Manifest.toml b/Manifest.toml deleted file mode 100644 index ac58105..0000000 --- a/Manifest.toml +++ /dev/null @@ -1,33 +0,0 @@ -# This file is machine-generated - editing it directly is not advised - -[[Base64]] -uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f" - -[[Distributed]] -deps = ["Random", "Serialization", "Sockets"] -uuid = "8ba89e20-285c-5b6f-9357-94700520ee1b" - -[[InteractiveUtils]] -deps = ["Markdown"] -uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240" - -[[Logging]] -uuid = "56ddb016-857b-54e1-b83d-db4d58db5568" - -[[Markdown]] -deps = ["Base64"] -uuid = "d6f4376e-aef5-505a-96c1-9c027394607a" - -[[Random]] -deps = ["Serialization"] -uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" - -[[Serialization]] -uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b" - -[[Sockets]] -uuid = "6462fe0b-24de-5631-8697-dd941f90decc" - -[[Test]] -deps = ["Distributed", "InteractiveUtils", "Logging", "Random"] -uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40" diff --git a/Project.toml b/Project.toml index 9fceb07..9b2508c 100644 --- a/Project.toml +++ b/Project.toml @@ -1,11 +1,13 @@ name = "SuffixArrays" uuid = "24f65c1e-0a10-5d3d-8a1f-a83399f3fced" - -[extras] -Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" +authors = ["Jacob Quinn ", "Stefan Karpinski "] +version = "0.3.0" [compat] julia = "1" +[extras] +Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" + [targets] test = ["Test"]