Skip to content
This repository was archived by the owner on Mar 19, 2019. It is now read-only.

Commit 17af734

Browse files
committed
Prepare for 1.0.0-m.6
1 parent 7e9d92b commit 17af734

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10-
[Unreleased]: https://github.com/atomist/rugs/compare/1.0.0-m.5...HEAD
10+
[Unreleased]: https://github.com/atomist/rugs/compare/1.0.0-m.6...HEAD
11+
12+
## [1.0.0-m.6] - 2017-07-11
13+
14+
[1.0.0-m.6]: https://github.com/atomist/rugs/compare/1.0.0-m.5...1.0.0-m.6
15+
16+
July rug rev release
17+
18+
### Changed
19+
20+
- Uptake `rug` and `cortex` 1.0.0-m.5
1121

1222
## [1.0.0-m.5] - 2017-06-01
1323

operations/messages/MessageRendering.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const renderIssues = deprecated({
5858
alternative: "@atomist/slack-messages",
5959
version: "1.0.0-m.5",
6060
},
61-
function renderIssues(issuesList: Issue[], chatSystem?: string): ResponseMessage {
61+
function oldRenderIssues(issuesList: Issue[], chatSystem?: string): ResponseMessage {
6262
const last = "last";
6363
try {
6464
issuesList[issuesList.length - 1][last] = true; // horrible mustache hack

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
"version": "1.0.0-m.6",
44
"description": "Helper functions for Rugs",
55
"dependencies": {
6-
"@atomist/cortex": "1.0.0-m.4",
7-
"@atomist/rug": "1.0.0-m.4",
8-
"@atomist/slack-messages": "^0.6.0",
6+
"@atomist/cortex": "1.0.0-m.5",
7+
"@atomist/rug": "1.0.0-m.5",
8+
"@atomist/slack-messages": "^0.7.0",
99
"deprecated-decorator": "^0.1.6",
1010
"mustache": "^2.3.0"
1111
},
1212
"scripts": {
1313
"test": "tsc -p . && mocha test --recursive",
1414
"autotest": "supervisor -q -n exit -x ./node_modules/.bin/mocha -- --recursive",
1515
"dev-test-watch": "mocha-typescript-watch",
16-
"prepublish": "tslint '**/*.ts' --exclude 'node_modules/**' && tsc -p ."
16+
"prepare": "tslint '**/*.ts' --exclude 'node_modules/**' && tsc -p ."
1717
},
1818
"repository": {
1919
"type": "git",

util/tree/QueryByExample.ts

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ export function forRoot<R extends GraphNode>(g: any): PathExpression<R, R> {
4747
* or as a predicate.
4848
*/
4949
class Branch {
50+
// tslint:disable-next-line:no-shadowed-variable
5051
constructor(public path: string, public match: boolean) { }
5152
}
5253

0 commit comments

Comments
 (0)