From a236cd43b12948ad921c1a4a93b8a8ad5227b17a Mon Sep 17 00:00:00 2001 From: Gunvir Ranu Date: Sun, 1 Nov 2020 14:49:37 -0500 Subject: [PATCH 1/2] Update Cargo manifest for initial release --- Cargo.toml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 654bfac..6932ed2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,16 @@ [package] name = "block-grid" version = "0.1.0" -authors = ["Gunvir Ranu "] -description = "A quick, cache-conscious tiled 2D array." +authors = ["Gunvir Ranu "] +description = "A quick, cache-conscious, tiled 2D array." edition = "2018" license = "MIT" -publish = false +readme = "README.md" +homepage = "https://github.com/gunvirranu/block-grid" +repository = "https://github.com/gunvirranu/block-grid" +categories = ["data-structures", "no-std", "memory-management"] +keywords = ["array", "grid", "2d", "matrix"] +exclude = ["/.github/"] [lib] bench = false From a2c1644d6fb58105e5be2e266d1dcbaf3ba58d59 Mon Sep 17 00:00:00 2001 From: Gunvir Ranu Date: Sun, 1 Nov 2020 15:31:37 -0500 Subject: [PATCH 2/2] Created CHANGELOG file --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..5e8aa72 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ + +# Changelog + +## Unreleased + +TODO. + +## 0.1.0 - 2020-11-01 + +First release. + +- Added like everything. +