From 5e981bca19ace2a7704f267175b6aa368e63bda0 Mon Sep 17 00:00:00 2001 From: Rubén Beltrán del Río Date: Sat, 18 Feb 2017 17:55:13 -0600 Subject: Initial Setup (#1) * Add git ignore * Add eslint config * Add dummy project files * Add jsdoc config * Add docker files * Add changelog, contributing and readme * Add travis files * Add Paw helper * Add travis test docker compose file * Name the ci service appropriately --- CHANGELOG.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 CHANGELOG.md (limited to 'CHANGELOG.md') diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e33d67f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](http://keepachangelog.com/) +and this project adheres to [Semantic Versioning](http://semver.org/). + +## [Unreleased] +### Added +- JSDoc config +- Simple contributing guidelines +- CI Integration +- Eslint configuration +- Docker configuration +- This CHANGELOG +- Readme + +[Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/master...develop + -- cgit From 2082455bb240291413c368c1b74736a739db2a2c Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Sun, 19 Feb 2017 02:03:50 -0600 Subject: Update readme and changelog --- CHANGELOG.md | 6 ++++-- package.json | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'CHANGELOG.md') diff --git a/CHANGELOG.md b/CHANGELOG.md index e33d67f..82f3e55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## [Unreleased] +## 1.0.0 ### Added +- Application SID Checking +- Redis Stor for URLs +- TwiML generation - JSDoc config - Simple contributing guidelines - CI Integration @@ -15,4 +18,3 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Readme [Unreleased]: https://github.com/olivierlacan/keep-a-changelog/compare/master...develop - diff --git a/package.json b/package.json index cb0405f..5bda8c4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dead-drop", - "version": "1.0.0-alpha1", + "version": "1.0.0", "description": "A voice communication system", "main": "lib/dead_drop.js", "repository": "git@github.com:rbdr/dead-drop.git", -- cgit