Auto-merge for PR #691 via VersionBot

Correctly apply current commit value to applications
This commit is contained in:
resin-io-versionbot[bot] 2018-07-12 12:06:37 +00:00 committed by GitHub
commit 0ec7b829b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 2 deletions

View File

@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY! automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
This project adheres to [Semantic Versioning](http://semver.org/). This project adheres to [Semantic Versioning](http://semver.org/).
## v7.13.3 - 2018-07-12
* Correctly apply current commit value to applications #691 [Cameron Diver]
## v7.13.2 - 2018-07-09 ## v7.13.2 - 2018-07-09
* Fix typo in config method call #688 [Cameron Diver] * Fix typo in config method call #688 [Cameron Diver]

View File

@ -1,7 +1,7 @@
{ {
"name": "resin-supervisor", "name": "resin-supervisor",
"description": "This is resin.io's Supervisor, a program that runs on IoT devices and has the task of running user Apps (which are Docker containers), and updating them as Resin's API informs it to.", "description": "This is resin.io's Supervisor, a program that runs on IoT devices and has the task of running user Apps (which are Docker containers), and updating them as Resin's API informs it to.",
"version": "7.13.2", "version": "7.13.3",
"license": "Apache-2.0", "license": "Apache-2.0",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -248,7 +248,7 @@ module.exports = class ApplicationManager extends EventEmitter
# multi-app warning! # multi-app warning!
# This is just wrong on every level # This is just wrong on every level
for app in apps _.each apps, (app) ->
app.commit = currentCommit app.commit = currentCommit
return apps return apps