Skip to content

Commit

Permalink
Add a CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tlimoncelli committed Feb 16, 2017
1 parent bd0fcd1 commit e91344d
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Release v1.20170127

* Starting CHANGELOG.
20 changes: 18 additions & 2 deletions RELEASE_ENGINEERING.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,23 @@ Stable Releases

Marking the software to be "stable":

Step 1. Tag it.
Step 1. Update CHANGELOG.md

Use "git log" to see what has changed and update CHANGELOG.md.

For a new release, add:

```
echo Release v1.$(date +%Y%m%d)
```

Commit with:

```
git commit -m'Update CHANGELOG.md' CHANGELOG.md
```

Step 2. Tag it.

```
git pull
Expand All @@ -37,7 +53,7 @@ git tag stable
git push origin tag stable
```

Step 2. Mark your calendar 1 week from today to check to see if this should be promoted to production.
Step 3. Mark your calendar 1 week from today to check to see if this should be promoted to production.

Production Releases
===================
Expand Down

0 comments on commit e91344d

Please sign in to comment.