From 944ffb1a7949106c182b9e5e74dde034cc5eefa8 Mon Sep 17 00:00:00 2001 From: Kasey Date: Thu, 23 May 2019 16:58:39 -0400 Subject: [PATCH 1/2] chore(modules): add go.mod file --- go.mod | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 go.mod diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..c4a6d9b --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/qri-io/varName + +go 1.12 From 0a965f2d6e2f91e9d751f8f0fd304226a21699be Mon Sep 17 00:00:00 2001 From: Kasey Date: Thu, 23 May 2019 16:59:10 -0400 Subject: [PATCH 2/2] chore(release): release v0.1.0 adds CHANGELOG.md and Makefile --- CHANGELOG.md | 18 ++++++++++++++++++ Makefile | 3 +++ 2 files changed, 21 insertions(+) create mode 100644 CHANGELOG.md create mode 100644 Makefile diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..de4f838 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,18 @@ +# (2019-05-23) + +This is the first proper release of `varName`. In preparation for go 1.13, in which `go.mod` files and go modules are the primary way to handle go dependencies, we are going to do an official release of all our modules. This will be version v0.1.0 of `varName`. + +### Bug Fixes + +* updated and added back test coverage script ([7bf6c06](https://github.com/qri-io/varName/commit/7bf6c06)) +* updated function `MakeNameUnique` to pass additional tests ensuring correct enumeration ([f248bd4](https://github.com/qri-io/varName/commit/f248bd4)) +* Updated truncateList() to work correctly for all 3 cases (Left, Right, Edge) ([8a89eee](https://github.com/qri-io/varName/commit/8a89eee)) + + +### Features + +* added snake and kebab case options and set default to snake ([96f6263](https://github.com/qri-io/varName/commit/96f6263)) +* initial commit ([9c25cdf](https://github.com/qri-io/varName/commit/9c25cdf)) + + + diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d025612 --- /dev/null +++ b/Makefile @@ -0,0 +1,3 @@ +# Let's keep all our changelog commands the same across all our packages: +update-changelog: + conventional-changelog -p angular -i CHANGELOG.md -s \ No newline at end of file