From 24ed9cdea43de1d52ea20cab2b7a38e7ed6886b3 Mon Sep 17 00:00:00 2001 From: Prashant Varanasi Date: Fri, 9 Nov 2018 11:37:01 -0800 Subject: [PATCH] Add CHANGELOG and version constant for 1.0.0 release (#9) --- CHANGELOG.md | 10 ++++++++++ version.go | 4 ++++ 2 files changed, 14 insertions(+) create mode 100644 CHANGELOG.md create mode 100644 version.go diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..4ff448b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,10 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## 1.0.0 - 2018-11-09 +### Added +- Initial release with APIs to stub and reset values for testing. +- Supports stubbing Go variables, and environment variables. diff --git a/version.go b/version.go new file mode 100644 index 0000000..7160e9c --- /dev/null +++ b/version.go @@ -0,0 +1,4 @@ +package gostub + +// Version contains the package version. +const Version = "1.0.0"