Skip to content

Commit 45e4688

Browse files
committed
bump version; update feed
1 parent 959440b commit 45e4688

File tree

2 files changed

+18
-12
lines changed

2 files changed

+18
-12
lines changed

DependencyControl.json

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"maintainer": "line0",
99
"knownFeeds": {
1010
"line0scripts": "https://raw.githubusercontent.com/TypesettingTools/line0-Aegisub-Scripts/master/DependencyControl.json",
11-
"a-mo": "https://raw.githubusercontent.com/TypesettingCartel/Aegisub-Motion/DepCtrl/DependencyControl.json",
11+
"a-mo": "https://raw.githubusercontent.com/TypesettingTools/Aegisub-Motion/DepCtrl/DependencyControl.json",
1212
"SubInspector": "https://raw.githubusercontent.com/TypesettingTools/SubInspector/master/DependencyControl.json",
1313
"ASSFoundation": "https://raw.githubusercontent.com/TypesettingTools/ASSFoundation/master/DependencyControl.json",
1414
"ffi-experiments": "https://raw.githubusercontent.com/torque/ffi-experiments/master/DependencyControl.json",
@@ -69,44 +69,44 @@
6969
"fileBaseUrl": "@{fileBaseUrl}v@{version}-@{channel}/modules/@{scriptName}",
7070
"channels": {
7171
"alpha": {
72-
"version": "0.6.1",
73-
"released": "2016-01-27",
72+
"version": "0.6.2",
73+
"released": "2016-02-06",
7474
"default": true,
7575
"files": [
7676
{
7777
"name": ".moon",
7878
"url": "@{fileBaseUrl}@{fileName}",
79-
"sha1": "96DC55D2390603CF8F752B9451F995F76827839B"
79+
"sha1": "0135ADCF023F2150B7324C5BABE72F0F26E412F1"
8080
},
8181
{
8282
"name": "/ConfigHandler.moon",
8383
"url": "@{fileBaseUrl}@{fileName}",
84-
"sha1": "A14D9C4691E72E67766A71F36E5411BAA38A0697"
84+
"sha1": "97BCD3207FE8158261FA7851057464535FCEFBC6"
8585
},
8686
{
8787
"name": "/FileOps.moon",
8888
"url": "@{fileBaseUrl}@{fileName}",
89-
"sha1": "17F1211F163835F80E14DD7E49EBFE887DEBFC46"
89+
"sha1": "D999D34DB93BA76EF0E991CEB1CD63F5CC5F8E68"
9090
},
9191
{
9292
"name": "/Logger.moon",
9393
"url": "@{fileBaseUrl}@{fileName}",
94-
"sha1": "1932A55299F340BECD7CB27B133015118FA21D8D"
94+
"sha1": "1E479FE95F0DFBEE8B098302AB589F32D0C40A00"
9595
},
9696
{
9797
"name": "/UnitTestSuite.moon",
9898
"url": "@{fileBaseUrl}@{fileName}",
99-
"sha1": "BE622B5307153CB81C960FA565906AE1DC9D3C27"
99+
"sha1": "ADAB6EFB05E08A7828DCA01BC1FC43D6482979A1"
100100
},
101101
{
102102
"name": "/UpdateFeed.moon",
103103
"url": "@{fileBaseUrl}@{fileName}",
104-
"sha1": "6B2A2CF54A17484CA4423B42AD97B7936145938E"
104+
"sha1": "1EE16D9D551FF82C2D7E448F2CD980E528874108"
105105
},
106106
{
107107
"name": "/Updater.moon",
108108
"url": "@{fileBaseUrl}@{fileName}",
109-
"sha1": "EABAB6C84320F5A656AAB4CB699E05F54D3BEC5B"
109+
"sha1": "A4AE061724E68B2EFBB7495A477263E1746E228A"
110110
}
111111
],
112112
"requiredModules": [
@@ -134,6 +134,12 @@
134134
}
135135
},
136136
"changelog": {
137+
"0.6.2": [
138+
"An issue was fixed that would cause DepCtrl initializer code in modules previously loaded with regular Lua loading mechanisms to be skipped when requested in a _DependencyControl_- context. This kept the [requireffi](https://github.com/torque/ffi-experiments/tree/master/requireffi) _DependencyControl_ record from being established, preventing any updates from taking place.",
139+
"UnitTestSuite: Fixed several broken assertions and related error messages, among them the `assertMatches` and `assertErrorMatches` assertions always returning `true`. Please make sure to rerun your tests after upgrading to confirm your tested actually return values whatever they were supposed to match.",
140+
"Updater: Identical or duplicate feeds from different sources (user configuration, feeds and API use) are no longer being checked for updates multiple times.",
141+
"Updater / FileOps: Fixed several broken error messages and return values."
142+
],
137143
"0.6.1": [
138144
"The Updater component now supports the DownloadManager v0.4.0 API changes.",
139145
"Updater: A regression introduced in v0.6.0 was fixed that caused update or installation processes to fail when the feed contained deletion records.",

modules/DependencyControl.moon

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -540,10 +540,10 @@ class DependencyControl
540540

541541
rec = DependencyControl{
542542
name: "DependencyControl",
543-
version: "0.6.1",
543+
version: "0.6.2",
544544
description: "Provides script management and auto-updating for Aegisub macros and modules.",
545545
author: "line0",
546-
url: "http://github.com/TypesettingCartel/DependencyControl",
546+
url: "http://github.com/TypesettingTools/DependencyControl",
547547
moduleName: "l0.DependencyControl",
548548
feed: "https://raw.githubusercontent.com/TypesettingTools/DependencyControl/master/DependencyControl.json",
549549
{

0 commit comments

Comments
 (0)