Skip to content

Commit

Permalink
Prepare for 1.5.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fatso83 committed Jul 26, 2016
1 parent 6241578 commit 7c25ae6
Show file tree
Hide file tree
Showing 4 changed files with 177 additions and 57 deletions.
11 changes: 6 additions & 5 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
Christian Johansen <[email protected]>
Morgan Roderick <[email protected]>
Carl-Erik Kopseng <[email protected]>
Morgan Roderick <[email protected]>
Morgan Roderick <[email protected]>
Maximilian Antoni <[email protected]>
Mark Wubben <[email protected]>
Duncan Beevers <[email protected]>
Soutaro Matsumoto <[email protected]>
Duncan Beevers <[email protected]>
Rogier Schouten <[email protected]>
Karl O'Keeffe <[email protected]>
Rogier Schouten <[email protected]>
Thibault Hild <[email protected]>
Curtis M. Humphrey, Ph.D <[email protected]>
Mark Banner <[email protected]>
Simen Bekkhus <[email protected]>
Sylvain Fraïssé <[email protected]>
Christian Johansen <[email protected]>
Andy Edwards <[email protected]>
10 changes: 7 additions & 3 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@

n.n.n / ....
1.5.1 / 2016-07-26
==================

* Fix up some BitHound warnings
* Fix setInterval() behavior with string times
* Incorporate test from PR #65
* Fix issue #59: context object required 'process'
* fixed a case where runAll was called and there are no timers (#70)
* Correct the clear{Interval|Timeout|Immediate} error message when calling `set*` for a different type of timer.
* Lots of minor changes to tooling and the build process

v1.5.0 / 2016-05-18
===================
Expand Down
15 changes: 13 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,25 @@ Compile interesting highlights from [`git changelog`](https://github.com/tj/git-

git authors --list > AUTHORS

## Create a new version
## Build a new bundle and commit changed files

npm run bundle
git add lolex.js AUTHORS History.md
git commit -m "Prepare for new release"

## Create a new PR
The `master` branch is protected.
You can merge it yourself.

Update package.json and create a new tag.
## Create a new version

```
$ npm version x.y.z
```

Updates package.json and creates a new tag.


## Push new commits and tags
```
git push && git push --tags
Expand Down
Loading

0 comments on commit 7c25ae6

Please sign in to comment.